From 723d462a2466b23ab3c5f1399addf2dd09ca4b10 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 23 Sep 2023 09:57:52 +0200 Subject: [PATCH 1/3] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f85f5bac68..b0548b5332 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ Optional, full setup with Acala and Statemint ## Run Integration Tests -1. Install all needed dependecies +1. Install all needed dependencies ``` cd tests yarn install From 03ab6a04f293aa3e7bfcf85bf223df84ed3fee05 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 23 Sep 2023 09:58:35 +0200 Subject: [PATCH 2/3] fix typos --- migrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migrations.md b/migrations.md index ac69c204bf..c9b74035ff 100644 --- a/migrations.md +++ b/migrations.md @@ -21,7 +21,7 @@ * Removed the previous migration of: * if the storage version is below 1, all collections from storage **CollectionById** of struct **Collection** version 1 to version 2, consisting of: * displacing _offchain_schema, variable_on_chain_schema, const_on_chain_schema, schema_version_ into _properties_ - * displacing _acccess, mint_mode_ into _permissions.access, permissions.mint_mode_ + * displacing _access, mint_mode_ into _permissions.access, permissions.mint_mode_ * adding _external_collection_ flag * Added unconditional bump of the storage version to 1 * Replaced returned weight `0` with `Weight::zero()` @@ -48,4 +48,4 @@ ### **pallet-unique:** * Removed the previous migration of: - * unconditional cleaning of all storage of **VariableMetaDataBasket** (cache for sponosoring setting deprecated variable metadata) + * unconditional cleaning of all storage of **VariableMetaDataBasket** (cache for sponsoring setting deprecated variable metadata) From ce2d98836d6c325a495a5149364eff33d980dd18 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 23 Sep 2023 10:00:02 +0200 Subject: [PATCH 3/3] fix typos --- doc/vesting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/vesting.md b/doc/vesting.md index 67b9cb8cdd..1c8ec3b9ca 100644 --- a/doc/vesting.md +++ b/doc/vesting.md @@ -7,7 +7,7 @@ In order to optimize storage used for chain state, as well as keep the rest of f ## VestedTransfer ### Description -This method transfers tokens to a vesting account with pre-defined vesting period. The token will not show up as owned by the recepient address, but will not be show as owned by the previous owner (sender) either. Instead, it will be shown as owned by a special value address - Vesting address (with unknown private key). After the vesting timestamp, token can be claimed using VestingClaim method, which will transfer the token to the recipient address. +This method transfers tokens to a vesting account with pre-defined vesting period. The token will not show up as owned by the recipient address, but will not be shown as owned by the previous owner (sender) either. Instead, it will be shown as owned by a special value address - Vesting address (with unknown private key). After the vesting timestamp, token can be claimed using VestingClaim method, which will transfer the token to the recipient address. ### Permissions * Collection Owner @@ -38,7 +38,7 @@ This method transfers tokens to a vesting account with pre-defined vesting perio ## VestedClaim ### Description -This method transfers tokens from the vesting account to the recipient, which was defined in VestingTrasnfer transaction. This method may be called by anyone, and it will only work after the vesting timestamp. +This method transfers tokens from the vesting account to the recipient, which was defined in VestingTransfer transaction. This method may be called by anyone, and it will only work after the vesting timestamp. ### Permissions * Anyone