From 58cf060d608c9755cfb089720f752afce11ac660 Mon Sep 17 00:00:00 2001 From: Dan Shields Date: Sun, 4 Dec 2022 18:18:10 -0700 Subject: [PATCH 1/3] dprint --- docs/Types.md | 23 +-- frame_metadata/Metadata.ts | 2 +- .../__snapshots__/Metadata.test.ts.snap | 188 +++++++++--------- 3 files changed, 104 insertions(+), 109 deletions(-) diff --git a/docs/Types.md b/docs/Types.md index e02e2f43c..a3ed5bcf5 100644 --- a/docs/Types.md +++ b/docs/Types.md @@ -1,6 +1,6 @@ # Types -The types of the on-chain world are declared in the given chain's Rust source code. While many types may remain consistent across chains, many may differ. On one chain, `AccountData` may be defined with fields describing fungible assets; on another (hypothetical) chain, perhaps `AccountData` references non-fungible assets, reputation, linked accounts or something else entirely. Although FRAME certainly helps to standardize chain properties, those properties can be customized to the extent that we cannot make assumptions regarding shapes of data across chains. Additionally, types can change upon runtime upgrades; your assumptions about the shape of a type may become invalid; to interact with these highly-dynamic on-chain environments––and to do so from a JavaScript environment––poses inherent difficulty. We JS developers must (A) think in terms of Rust data types and (B) keep a lookout for breaking changes to chain runtimes. This document does not provide a silver-bullet solution to this complexity. But it should provide the background necessary for you to address types for your specific use cases. +The types of the on-chain world are declared in a given [Substrate](https://substrate.io/)-based chain's (Rust) source code. While many types may remain consistent across chains, many may differ. On one chain, `AccountData` may be defined with fields describing fungible assets; on another (hypothetical) chain, perhaps `AccountData` references non-fungible assets, reputation, linked accounts or something else entirely. Although [FRAME](https://docs.substrate.io/reference/glossary/#frame) certainly helps to standardize chain properties, those properties can be customized to the extent that we cannot make assumptions regarding shapes of data across chains. Additionally, types can change upon [runtime upgrades](https://docs.substrate.io/build/upgrade-the-runtime/); your assumptions about the shape of a type may become invalid; to interact with these highly-dynamic on-chain environments––and to do so from a JavaScript environment––poses inherent difficulty. We JS developers must (A) think in terms of Rust data types and (B) keep a lookout for breaking changes to chain runtimes. This document does not provide a silver-bullet solution to this complexity, but it should provide the background necessary for you to address types for your specific use cases. If you just want to see how Rust types are transformed by Capi, [skip to the conversion table](#rust-⬌-typescript). @@ -20,7 +20,7 @@ As always, our first step is to bring Capi into scope. import * as C from "https://deno.land/x/capi/mod.ts" ``` -Now let's fetch the metadata. +As an example, let's connect to Polkadot and fetch the chain's metadata for the present highest block. ```ts const client = C.rpcClient(C.rpc.smoldotProvider, { @@ -48,7 +48,7 @@ const accountsStorage = C.entryMetadata(balancesPallet, "Account") console.log(await accountsStorage.run()) ``` -On most chains, `accountsStorage` will look similar to the following. +On chains using the `Balances` pallet, `accountsStorage` will look _similar_ to the following. ```ts { @@ -128,9 +128,9 @@ Let's now utilize our `accountId32` definition to read a balance. ```ts // ... -const key = C - .keyPageRead(C.polkadot)("System", "Account", 1, []) - .access(0).access(0) +const key = C.keyPageRead(C.polkadot)("System", "Account", 1, []) + .access(0) + .access(0) const account = C.entryRead(C.polkadot)("System", "Account", [key]) @@ -238,10 +238,7 @@ type S1 = A type S2 = [A, B] type S3 = { a: A } -type E0 = - | "A" - | "B" - | "C" +type E0 = "A" | "B" | "C" type E1 = | { type: "A" } @@ -280,14 +277,12 @@ Let's look at the same example from before: reading some `AccountData`. ## Discriminating "Ok" from "Error" ```ts -const result = await C - .entryRead(C.polkadot)("System", "Account", [key]) - .run() +const result = await C.entryRead(C.polkadot)("System", "Account", [key]).run() ``` In this storage read example, `result` is typed as the successfully-retrieved value (container) unioned with all possible errors. -There are several ways to "unwrap" the inner `value`. The recommended path is to first check for and handle all possible errors, which may encapsulate error specific data (as do SCALE validation errors). +There are several ways to "unwrap" the inner `value`. The recommended path is to first check for and handle all possible errors, which may encapsulate error specific data (as do [SCALE](https://docs.substrate.io/reference/scale-codec/) validation errors). ```ts if (account instanceof Error) { diff --git a/frame_metadata/Metadata.ts b/frame_metadata/Metadata.ts index 8a528bb7e..1dc59287d 100644 --- a/frame_metadata/Metadata.ts +++ b/frame_metadata/Metadata.ts @@ -127,7 +127,7 @@ export const $extrinsicDef: $.Codec = $.object( ["signedExtensions", $.array($signedExtensionMetadata)], ) -// https://docs.substrate.io/v3/runtime/metadata/#encoded-metadata-format +// https://docs.substrate.io/build/application-development/#metadata-system export const magicNumber = 1635018093 export interface Metadata { diff --git a/frame_metadata/__snapshots__/Metadata.test.ts.snap b/frame_metadata/__snapshots__/Metadata.test.ts.snap index ef739b07e..3519df937 100644 --- a/frame_metadata/__snapshots__/Metadata.test.ts.snap +++ b/frame_metadata/__snapshots__/Metadata.test.ts.snap @@ -159797,7 +159797,7 @@ snapshot[`moonbeam 1`] = ` Ty#28 (cumulus_pallet_parachain_system::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -159909,7 +159909,7 @@ snapshot[`moonbeam 1`] = ` Ty#29 (pallet_balances::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -160229,7 +160229,7 @@ snapshot[`moonbeam 1`] = ` Ty#31 (pallet_transaction_payment::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -160283,7 +160283,7 @@ snapshot[`moonbeam 1`] = ` Ty#32 (pallet_parachain_staking::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161466,7 +161466,7 @@ snapshot[`moonbeam 1`] = ` Ty#39 (pallet_author_slot_filter::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161523,7 +161523,7 @@ snapshot[`moonbeam 1`] = ` Ty#41 (pallet_author_mapping::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161703,7 +161703,7 @@ snapshot[`moonbeam 1`] = ` Ty#45 (pallet_moonbeam_orbiters::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161903,7 +161903,7 @@ snapshot[`moonbeam 1`] = ` Ty#47 (pallet_utility::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162068,7 +162068,7 @@ snapshot[`moonbeam 1`] = ` Ty#50 (pallet_proxy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162338,7 +162338,7 @@ snapshot[`moonbeam 1`] = ` Ty#53 (pallet_maintenance_mode::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162407,7 +162407,7 @@ snapshot[`moonbeam 1`] = ` Ty#54 (pallet_identity::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162668,7 +162668,7 @@ snapshot[`moonbeam 1`] = ` Ty#55 (pallet_migrations::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162755,7 +162755,7 @@ snapshot[`moonbeam 1`] = ` Ty#56 (pallet_evm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162926,7 +162926,7 @@ snapshot[`moonbeam 1`] = ` Ty#60 (pallet_ethereum::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -163386,7 +163386,7 @@ snapshot[`moonbeam 1`] = ` Ty#69 (pallet_base_fee::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -163725,7 +163725,7 @@ snapshot[`moonbeam 1`] = ` Ty#77 (pallet_democracy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164336,7 +164336,7 @@ snapshot[`moonbeam 1`] = ` Ty#82 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164554,7 +164554,7 @@ snapshot[`moonbeam 1`] = ` Ty#83 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164772,7 +164772,7 @@ snapshot[`moonbeam 1`] = ` Ty#84 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164990,7 +164990,7 @@ snapshot[`moonbeam 1`] = ` Ty#85 (pallet_treasury::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165180,7 +165180,7 @@ snapshot[`moonbeam 1`] = ` Ty#86 (pallet_crowdloan_rewards::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165364,7 +165364,7 @@ snapshot[`moonbeam 1`] = ` Ty#87 (cumulus_pallet_xcmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165864,7 +165864,7 @@ snapshot[`moonbeam 1`] = ` Ty#91 (cumulus_pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -166025,7 +166025,7 @@ snapshot[`moonbeam 1`] = ` Ty#94 (cumulus_pallet_dmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -166186,7 +166186,7 @@ snapshot[`moonbeam 1`] = ` Ty#95 (pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -169682,7 +169682,7 @@ snapshot[`moonbeam 1`] = ` Ty#132 (pallet_assets::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170201,7 +170201,7 @@ snapshot[`moonbeam 1`] = ` Ty#133 (pallet_asset_manager::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170481,7 +170481,7 @@ snapshot[`moonbeam 1`] = ` Ty#136 (orml_xtokens::module::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170541,7 +170541,7 @@ snapshot[`moonbeam 1`] = ` Ty#137 (pallet_xcm_transactor::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170869,7 +170869,7 @@ snapshot[`moonbeam 1`] = ` Ty#140 (pallet_assets::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -171388,7 +171388,7 @@ snapshot[`moonbeam 1`] = ` Ty#141 (pallet_randomness::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -173087,7 +173087,7 @@ snapshot[`moonbeam 1`] = ` Ty#186 (cumulus_pallet_parachain_system::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -173727,7 +173727,7 @@ snapshot[`moonbeam 1`] = ` Ty#198 (pallet_balances::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -175174,7 +175174,7 @@ snapshot[`moonbeam 1`] = ` Ty#223 (pallet_parachain_staking::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -175563,7 +175563,7 @@ snapshot[`moonbeam 1`] = ` Ty#225 (pallet_author_inherent::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190225,7 +190225,7 @@ snapshot[`moonbeam 1`] = ` Ty#368 (pallet_utility::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190463,7 +190463,7 @@ snapshot[`moonbeam 1`] = ` Ty#377 (pallet_proxy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190871,7 +190871,7 @@ snapshot[`moonbeam 1`] = ` Ty#389 (pallet_identity::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191052,7 +191052,7 @@ snapshot[`moonbeam 1`] = ` Ty#391 (pallet_evm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191658,7 +191658,7 @@ snapshot[`moonbeam 1`] = ` Ty#408 (pallet_ethereum::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191815,7 +191815,7 @@ snapshot[`moonbeam 1`] = ` Ty#412 (pallet_scheduler::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192408,7 +192408,7 @@ snapshot[`moonbeam 1`] = ` Ty#428 (pallet_democracy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192781,7 +192781,7 @@ snapshot[`moonbeam 1`] = ` Ty#431 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192898,7 +192898,7 @@ snapshot[`moonbeam 1`] = ` Ty#432 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193046,7 +193046,7 @@ snapshot[`moonbeam 1`] = ` Ty#434 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193397,7 +193397,7 @@ snapshot[`moonbeam 1`] = ` Ty#442 (pallet_crowdloan_rewards::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193889,7 +193889,7 @@ snapshot[`moonbeam 1`] = ` Ty#456 (cumulus_pallet_xcmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193957,7 +193957,7 @@ snapshot[`moonbeam 1`] = ` Ty#457 (cumulus_pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194061,7 +194061,7 @@ snapshot[`moonbeam 1`] = ` Ty#462 (cumulus_pallet_dmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194446,7 +194446,7 @@ snapshot[`moonbeam 1`] = ` Ty#473 (pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194968,7 +194968,7 @@ snapshot[`moonbeam 1`] = ` Ty#482 (pallet_assets::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -195260,7 +195260,7 @@ snapshot[`moonbeam 1`] = ` Ty#486 (orml_xtokens::module::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -195661,7 +195661,7 @@ snapshot[`moonbeam 1`] = ` Ty#488 (pallet_assets::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -196075,7 +196075,7 @@ snapshot[`moonbeam 1`] = ` Ty#494 (pallet_randomness::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -258996,7 +258996,7 @@ snapshot[`subsocial 1`] = ` Ty#27 (cumulus_pallet_parachain_system::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259108,7 +259108,7 @@ snapshot[`subsocial 1`] = ` Ty#28 (pallet_balances::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259428,7 +259428,7 @@ snapshot[`subsocial 1`] = ` Ty#30 (pallet_collator_selection::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259544,7 +259544,7 @@ snapshot[`subsocial 1`] = ` Ty#32 (pallet_session::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259580,7 +259580,7 @@ snapshot[`subsocial 1`] = ` Ty#33 (pallet_vesting::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259643,7 +259643,7 @@ snapshot[`subsocial 1`] = ` Ty#34 (pallet_utility::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259808,7 +259808,7 @@ snapshot[`subsocial 1`] = ` Ty#37 (cumulus_pallet_xcmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -260294,7 +260294,7 @@ snapshot[`subsocial 1`] = ` Ty#41 (pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -263851,7 +263851,7 @@ snapshot[`subsocial 1`] = ` Ty#80 (cumulus_pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -263932,7 +263932,7 @@ snapshot[`subsocial 1`] = ` Ty#81 (cumulus_pallet_dmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264093,7 +264093,7 @@ snapshot[`subsocial 1`] = ` Ty#82 (pallet_domains::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264225,7 +264225,7 @@ snapshot[`subsocial 1`] = ` Ty#84 (pallet_energy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264355,7 +264355,7 @@ snapshot[`subsocial 1`] = ` Ty#87 (pallet_roles::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264568,7 +264568,7 @@ snapshot[`subsocial 1`] = ` Ty#90 (pallet_account_follows::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264635,7 +264635,7 @@ snapshot[`subsocial 1`] = ` Ty#91 (pallet_profiles::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264721,7 +264721,7 @@ snapshot[`subsocial 1`] = ` Ty#93 (pallet_space_follows::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264788,7 +264788,7 @@ snapshot[`subsocial 1`] = ` Ty#94 (pallet_space_ownership::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264884,7 +264884,7 @@ snapshot[`subsocial 1`] = ` Ty#95 (pallet_spaces::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264951,7 +264951,7 @@ snapshot[`subsocial 1`] = ` Ty#96 (pallet_posts::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -265054,7 +265054,7 @@ snapshot[`subsocial 1`] = ` Ty#97 (pallet_reactions::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -265215,7 +265215,7 @@ snapshot[`subsocial 1`] = ` Ty#99 (pallet_sudo::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -266902,7 +266902,7 @@ snapshot[`subsocial 1`] = ` Ty#151 (cumulus_pallet_parachain_system::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -267651,7 +267651,7 @@ snapshot[`subsocial 1`] = ` Ty#165 (pallet_balances::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -267997,7 +267997,7 @@ snapshot[`subsocial 1`] = ` Ty#174 (pallet_authorship::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -268227,7 +268227,7 @@ snapshot[`subsocial 1`] = ` Ty#178 (pallet_collator_selection::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276115,7 +276115,7 @@ snapshot[`subsocial 1`] = ` Ty#267 (pallet_utility::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276476,7 +276476,7 @@ snapshot[`subsocial 1`] = ` Ty#281 (cumulus_pallet_xcmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276544,7 +276544,7 @@ snapshot[`subsocial 1`] = ` Ty#282 (pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276687,7 +276687,7 @@ snapshot[`subsocial 1`] = ` Ty#283 (cumulus_pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276791,7 +276791,7 @@ snapshot[`subsocial 1`] = ` Ty#288 (cumulus_pallet_dmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276999,7 +276999,7 @@ snapshot[`subsocial 1`] = ` Ty#293 (pallet_domains::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277166,7 +277166,7 @@ snapshot[`subsocial 1`] = ` Ty#294 (pallet_energy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277309,7 +277309,7 @@ snapshot[`subsocial 1`] = ` Ty#298 (pallet_roles::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277430,7 +277430,7 @@ snapshot[`subsocial 1`] = ` Ty#300 (pallet_account_follows::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277507,7 +277507,7 @@ snapshot[`subsocial 1`] = ` Ty#301 (pallet_profiles::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277562,7 +277562,7 @@ snapshot[`subsocial 1`] = ` Ty#303 (pallet_space_follows::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277612,7 +277612,7 @@ snapshot[`subsocial 1`] = ` Ty#304 (pallet_space_ownership::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277779,7 +277779,7 @@ snapshot[`subsocial 1`] = ` Ty#307 (pallet_spaces::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277963,7 +277963,7 @@ snapshot[`subsocial 1`] = ` Ty#309 (pallet_posts::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -278233,7 +278233,7 @@ snapshot[`subsocial 1`] = ` Ty#311 (pallet_reactions::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) \\t\\t\\tof this pallet. \\t\\t\\t", ], From f23ef741011b161a9fd3e5aa7fe5c7b33bf344a4 Mon Sep 17 00:00:00 2001 From: Harry Solovay Date: Mon, 5 Dec 2022 08:13:45 -0500 Subject: [PATCH 2/3] revert metadata snapshot --- .../__snapshots__/Metadata.test.ts.snap | 188 +++++++++--------- 1 file changed, 94 insertions(+), 94 deletions(-) diff --git a/frame_metadata/__snapshots__/Metadata.test.ts.snap b/frame_metadata/__snapshots__/Metadata.test.ts.snap index 3519df937..ef739b07e 100644 --- a/frame_metadata/__snapshots__/Metadata.test.ts.snap +++ b/frame_metadata/__snapshots__/Metadata.test.ts.snap @@ -159797,7 +159797,7 @@ snapshot[`moonbeam 1`] = ` Ty#28 (cumulus_pallet_parachain_system::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -159909,7 +159909,7 @@ snapshot[`moonbeam 1`] = ` Ty#29 (pallet_balances::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -160229,7 +160229,7 @@ snapshot[`moonbeam 1`] = ` Ty#31 (pallet_transaction_payment::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -160283,7 +160283,7 @@ snapshot[`moonbeam 1`] = ` Ty#32 (pallet_parachain_staking::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161466,7 +161466,7 @@ snapshot[`moonbeam 1`] = ` Ty#39 (pallet_author_slot_filter::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161523,7 +161523,7 @@ snapshot[`moonbeam 1`] = ` Ty#41 (pallet_author_mapping::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161703,7 +161703,7 @@ snapshot[`moonbeam 1`] = ` Ty#45 (pallet_moonbeam_orbiters::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -161903,7 +161903,7 @@ snapshot[`moonbeam 1`] = ` Ty#47 (pallet_utility::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162068,7 +162068,7 @@ snapshot[`moonbeam 1`] = ` Ty#50 (pallet_proxy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162338,7 +162338,7 @@ snapshot[`moonbeam 1`] = ` Ty#53 (pallet_maintenance_mode::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162407,7 +162407,7 @@ snapshot[`moonbeam 1`] = ` Ty#54 (pallet_identity::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162668,7 +162668,7 @@ snapshot[`moonbeam 1`] = ` Ty#55 (pallet_migrations::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162755,7 +162755,7 @@ snapshot[`moonbeam 1`] = ` Ty#56 (pallet_evm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -162926,7 +162926,7 @@ snapshot[`moonbeam 1`] = ` Ty#60 (pallet_ethereum::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -163386,7 +163386,7 @@ snapshot[`moonbeam 1`] = ` Ty#69 (pallet_base_fee::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -163725,7 +163725,7 @@ snapshot[`moonbeam 1`] = ` Ty#77 (pallet_democracy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164336,7 +164336,7 @@ snapshot[`moonbeam 1`] = ` Ty#82 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164554,7 +164554,7 @@ snapshot[`moonbeam 1`] = ` Ty#83 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164772,7 +164772,7 @@ snapshot[`moonbeam 1`] = ` Ty#84 (pallet_collective::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -164990,7 +164990,7 @@ snapshot[`moonbeam 1`] = ` Ty#85 (pallet_treasury::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165180,7 +165180,7 @@ snapshot[`moonbeam 1`] = ` Ty#86 (pallet_crowdloan_rewards::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165364,7 +165364,7 @@ snapshot[`moonbeam 1`] = ` Ty#87 (cumulus_pallet_xcmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -165864,7 +165864,7 @@ snapshot[`moonbeam 1`] = ` Ty#91 (cumulus_pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -166025,7 +166025,7 @@ snapshot[`moonbeam 1`] = ` Ty#94 (cumulus_pallet_dmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -166186,7 +166186,7 @@ snapshot[`moonbeam 1`] = ` Ty#95 (pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -169682,7 +169682,7 @@ snapshot[`moonbeam 1`] = ` Ty#132 (pallet_assets::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170201,7 +170201,7 @@ snapshot[`moonbeam 1`] = ` Ty#133 (pallet_asset_manager::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170481,7 +170481,7 @@ snapshot[`moonbeam 1`] = ` Ty#136 (orml_xtokens::module::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170541,7 +170541,7 @@ snapshot[`moonbeam 1`] = ` Ty#137 (pallet_xcm_transactor::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -170869,7 +170869,7 @@ snapshot[`moonbeam 1`] = ` Ty#140 (pallet_assets::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -171388,7 +171388,7 @@ snapshot[`moonbeam 1`] = ` Ty#141 (pallet_randomness::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -173087,7 +173087,7 @@ snapshot[`moonbeam 1`] = ` Ty#186 (cumulus_pallet_parachain_system::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -173727,7 +173727,7 @@ snapshot[`moonbeam 1`] = ` Ty#198 (pallet_balances::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -175174,7 +175174,7 @@ snapshot[`moonbeam 1`] = ` Ty#223 (pallet_parachain_staking::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -175563,7 +175563,7 @@ snapshot[`moonbeam 1`] = ` Ty#225 (pallet_author_inherent::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190225,7 +190225,7 @@ snapshot[`moonbeam 1`] = ` Ty#368 (pallet_utility::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190463,7 +190463,7 @@ snapshot[`moonbeam 1`] = ` Ty#377 (pallet_proxy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -190871,7 +190871,7 @@ snapshot[`moonbeam 1`] = ` Ty#389 (pallet_identity::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191052,7 +191052,7 @@ snapshot[`moonbeam 1`] = ` Ty#391 (pallet_evm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191658,7 +191658,7 @@ snapshot[`moonbeam 1`] = ` Ty#408 (pallet_ethereum::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -191815,7 +191815,7 @@ snapshot[`moonbeam 1`] = ` Ty#412 (pallet_scheduler::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192408,7 +192408,7 @@ snapshot[`moonbeam 1`] = ` Ty#428 (pallet_democracy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192781,7 +192781,7 @@ snapshot[`moonbeam 1`] = ` Ty#431 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -192898,7 +192898,7 @@ snapshot[`moonbeam 1`] = ` Ty#432 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193046,7 +193046,7 @@ snapshot[`moonbeam 1`] = ` Ty#434 (pallet_collective::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193397,7 +193397,7 @@ snapshot[`moonbeam 1`] = ` Ty#442 (pallet_crowdloan_rewards::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193889,7 +193889,7 @@ snapshot[`moonbeam 1`] = ` Ty#456 (cumulus_pallet_xcmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -193957,7 +193957,7 @@ snapshot[`moonbeam 1`] = ` Ty#457 (cumulus_pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194061,7 +194061,7 @@ snapshot[`moonbeam 1`] = ` Ty#462 (cumulus_pallet_dmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194446,7 +194446,7 @@ snapshot[`moonbeam 1`] = ` Ty#473 (pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -194968,7 +194968,7 @@ snapshot[`moonbeam 1`] = ` Ty#482 (pallet_assets::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -195260,7 +195260,7 @@ snapshot[`moonbeam 1`] = ` Ty#486 (orml_xtokens::module::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -195661,7 +195661,7 @@ snapshot[`moonbeam 1`] = ` Ty#488 (pallet_assets::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -196075,7 +196075,7 @@ snapshot[`moonbeam 1`] = ` Ty#494 (pallet_randomness::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -258996,7 +258996,7 @@ snapshot[`subsocial 1`] = ` Ty#27 (cumulus_pallet_parachain_system::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259108,7 +259108,7 @@ snapshot[`subsocial 1`] = ` Ty#28 (pallet_balances::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259428,7 +259428,7 @@ snapshot[`subsocial 1`] = ` Ty#30 (pallet_collator_selection::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259544,7 +259544,7 @@ snapshot[`subsocial 1`] = ` Ty#32 (pallet_session::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259580,7 +259580,7 @@ snapshot[`subsocial 1`] = ` Ty#33 (pallet_vesting::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259643,7 +259643,7 @@ snapshot[`subsocial 1`] = ` Ty#34 (pallet_utility::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -259808,7 +259808,7 @@ snapshot[`subsocial 1`] = ` Ty#37 (cumulus_pallet_xcmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -260294,7 +260294,7 @@ snapshot[`subsocial 1`] = ` Ty#41 (pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -263851,7 +263851,7 @@ snapshot[`subsocial 1`] = ` Ty#80 (cumulus_pallet_xcm::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -263932,7 +263932,7 @@ snapshot[`subsocial 1`] = ` Ty#81 (cumulus_pallet_dmp_queue::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264093,7 +264093,7 @@ snapshot[`subsocial 1`] = ` Ty#82 (pallet_domains::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264225,7 +264225,7 @@ snapshot[`subsocial 1`] = ` Ty#84 (pallet_energy::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264355,7 +264355,7 @@ snapshot[`subsocial 1`] = ` Ty#87 (pallet_roles::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264568,7 +264568,7 @@ snapshot[`subsocial 1`] = ` Ty#90 (pallet_account_follows::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264635,7 +264635,7 @@ snapshot[`subsocial 1`] = ` Ty#91 (pallet_profiles::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264721,7 +264721,7 @@ snapshot[`subsocial 1`] = ` Ty#93 (pallet_space_follows::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264788,7 +264788,7 @@ snapshot[`subsocial 1`] = ` Ty#94 (pallet_space_ownership::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264884,7 +264884,7 @@ snapshot[`subsocial 1`] = ` Ty#95 (pallet_spaces::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -264951,7 +264951,7 @@ snapshot[`subsocial 1`] = ` Ty#96 (pallet_posts::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -265054,7 +265054,7 @@ snapshot[`subsocial 1`] = ` Ty#97 (pallet_reactions::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -265215,7 +265215,7 @@ snapshot[`subsocial 1`] = ` Ty#99 (pallet_sudo::pallet::Event) { docs: [ " -\\t\\t\\tThe [event](https://docs.substrate.io/build/events-and-errors/) emitted +\\t\\t\\tThe [event](https://docs.substrate.io/v3/runtime/events-and-errors) emitted \\t\\t\\tby this pallet. \\t\\t\\t", ], @@ -266902,7 +266902,7 @@ snapshot[`subsocial 1`] = ` Ty#151 (cumulus_pallet_parachain_system::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -267651,7 +267651,7 @@ snapshot[`subsocial 1`] = ` Ty#165 (pallet_balances::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -267997,7 +267997,7 @@ snapshot[`subsocial 1`] = ` Ty#174 (pallet_authorship::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -268227,7 +268227,7 @@ snapshot[`subsocial 1`] = ` Ty#178 (pallet_collator_selection::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276115,7 +276115,7 @@ snapshot[`subsocial 1`] = ` Ty#267 (pallet_utility::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276476,7 +276476,7 @@ snapshot[`subsocial 1`] = ` Ty#281 (cumulus_pallet_xcmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276544,7 +276544,7 @@ snapshot[`subsocial 1`] = ` Ty#282 (pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276687,7 +276687,7 @@ snapshot[`subsocial 1`] = ` Ty#283 (cumulus_pallet_xcm::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276791,7 +276791,7 @@ snapshot[`subsocial 1`] = ` Ty#288 (cumulus_pallet_dmp_queue::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -276999,7 +276999,7 @@ snapshot[`subsocial 1`] = ` Ty#293 (pallet_domains::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277166,7 +277166,7 @@ snapshot[`subsocial 1`] = ` Ty#294 (pallet_energy::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277309,7 +277309,7 @@ snapshot[`subsocial 1`] = ` Ty#298 (pallet_roles::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277430,7 +277430,7 @@ snapshot[`subsocial 1`] = ` Ty#300 (pallet_account_follows::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277507,7 +277507,7 @@ snapshot[`subsocial 1`] = ` Ty#301 (pallet_profiles::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277562,7 +277562,7 @@ snapshot[`subsocial 1`] = ` Ty#303 (pallet_space_follows::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277612,7 +277612,7 @@ snapshot[`subsocial 1`] = ` Ty#304 (pallet_space_ownership::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277779,7 +277779,7 @@ snapshot[`subsocial 1`] = ` Ty#307 (pallet_spaces::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -277963,7 +277963,7 @@ snapshot[`subsocial 1`] = ` Ty#309 (pallet_posts::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], @@ -278233,7 +278233,7 @@ snapshot[`subsocial 1`] = ` Ty#311 (pallet_reactions::pallet::Error) { docs: [ " -\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/build/events-and-errors/) +\\t\\t\\tCustom [dispatch errors](https://docs.substrate.io/v3/runtime/events-and-errors) \\t\\t\\tof this pallet. \\t\\t\\t", ], From 7759f46c911839a8e5d6f943b031ecbb20fbfbf9 Mon Sep 17 00:00:00 2001 From: Dan Shields <35669742+NukeManDan@users.noreply.github.com> Date: Mon, 5 Dec 2022 10:16:10 -0700 Subject: [PATCH 3/3] Update docs/Types.md Co-authored-by: T6 --- docs/Types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Types.md b/docs/Types.md index a3ed5bcf5..444668ef8 100644 --- a/docs/Types.md +++ b/docs/Types.md @@ -282,7 +282,7 @@ const result = await C.entryRead(C.polkadot)("System", "Account", [key]).run() In this storage read example, `result` is typed as the successfully-retrieved value (container) unioned with all possible errors. -There are several ways to "unwrap" the inner `value`. The recommended path is to first check for and handle all possible errors, which may encapsulate error specific data (as do [SCALE](https://docs.substrate.io/reference/scale-codec/) validation errors). +There are several ways to "unwrap" the inner `value`. The recommended path is to first check for and handle all possible errors, which may encapsulate error specific data (as do [SCALE](https://github.com/paritytech/scale-ts) validation errors). ```ts if (account instanceof Error) {