From 9d4701e54da7fca9cc0453207e9694e14c70dd49 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 10:28:53 +0100 Subject: [PATCH 1/7] disable check of dead playground link to fix CI --- docs/monthly-update/2022/05.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/monthly-update/2022/05.md b/docs/monthly-update/2022/05.md index 4108f251ce..be62336ffa 100644 --- a/docs/monthly-update/2022/05.md +++ b/docs/monthly-update/2022/05.md @@ -19,6 +19,7 @@ a curated list of awesome projects related to ink!. ## Playground 🕹 + The ink! playground has been published at https://ink-playground.substrate.io! It's handy for a couple of things. For example: From 81f26c2edb8ba1c53f37bd3f70af50984140c7ac Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 10:34:05 +0100 Subject: [PATCH 2/7] explicitly use https instead of http --- versioned_docs/version-5.x/intro/how-it-works.md | 4 ++-- versioned_docs/version-5.x/intro/intro.mdx | 4 ++-- versioned_docs/version-5.x/monthly-update/2022/09.md | 6 +++--- versioned_docs/version-5.x/monthly-update/2022/10.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/versioned_docs/version-5.x/intro/how-it-works.md b/versioned_docs/version-5.x/intro/how-it-works.md index 444fbae69f..cc099b4c4f 100644 --- a/versioned_docs/version-5.x/intro/how-it-works.md +++ b/versioned_docs/version-5.x/intro/how-it-works.md @@ -8,13 +8,13 @@ slug: /how-it-works # How it Works – Substrate -ink! is a programming language for smart contracts; blockchains built with [the Substrate framework](http://substrate.io) +ink! is a programming language for smart contracts; blockchains built with [the Substrate framework](https://substrate.io) can choose from a number of smart contract languages which one(s) they want to support. ink! is one of them. It is an opinionated language that we have built by extending the popular Rust programming language with functionality needed to make it smart contract compatible. ## How does ink! tie into Substrate? -[Substrate](https://substrate.io) is a framework for building blockchains – those can be standalone blockchains or blockchains connected to [Kusama](http://kusama.network) or [Polkadot](http://polkadot.network), so called _parachains_. Substrate contains a number of modules, in Substrate terminology those are called _pallets_. Substrate comes with a set of pallets for many requirements modern blockchains typically have – staking, fungible tokens, non-fungible tokens, governance, etc. +[Substrate](https://substrate.io) is a framework for building blockchains – those can be standalone blockchains or blockchains connected to [Kusama](https://kusama.network) or [Polkadot](https://polkadot.network), so called _parachains_. Substrate contains a number of modules, in Substrate terminology those are called _pallets_. Substrate comes with a set of pallets for many requirements modern blockchains typically have – staking, fungible tokens, non-fungible tokens, governance, etc. Substrate also ships with a module for smart contracts, this module is called `pallet-contracts`. If a parachain is developed in Substrate it can easily add smart contract functionality by including this pallet. diff --git a/versioned_docs/version-5.x/intro/intro.mdx b/versioned_docs/version-5.x/intro/intro.mdx index 7e81cf0025..9f690f1baa 100644 --- a/versioned_docs/version-5.x/intro/intro.mdx +++ b/versioned_docs/version-5.x/intro/intro.mdx @@ -24,7 +24,7 @@ hide_table_of_contents: true   - +
@@ -144,7 +144,7 @@ hide_table_of_contents: true
- +
diff --git a/versioned_docs/version-5.x/monthly-update/2022/09.md b/versioned_docs/version-5.x/monthly-update/2022/09.md index 4a79512482..56e5a81d8b 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/09.md +++ b/versioned_docs/version-5.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](https://twitter.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 @@ -69,5 +69,5 @@ This changes now with the Polkadot Forum: ## New Domain 🏠 -We've moved this documentation portal from `use.ink` to a new domain: [`use.ink`](http://use.ink). +We've moved this documentation portal from `use.ink` to a new domain: [`use.ink`](https://use.ink). It was a three letter domain, we just couldn't resist! diff --git a/versioned_docs/version-5.x/monthly-update/2022/10.md b/versioned_docs/version-5.x/monthly-update/2022/10.md index acc578b5af..f9034e9997 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/10.md +++ b/versioned_docs/version-5.x/monthly-update/2022/10.md @@ -21,7 +21,7 @@ It did and there will be many more academies! Starting with the next one, which is happening in January and February 2023 in Buenos Aires. We will also be giving lectures there again! You can find more -details on [http://dot.li/academy](http://dot.li/academy). +details on [https://dot.li/academy](https://dot.li/academy). ## Astar ported Uniswap v2 to ink! 💱 From 9428c91dfe3fc2cc29aeb6c9941b2f37c6f4dab2 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 10:53:37 +0100 Subject: [PATCH 3/7] replace twitter.com with x.com --- docs/intro/upcoming-events.md | 4 ++-- docs/monthly-update/2022/04.md | 2 +- docs/monthly-update/2022/09.md | 4 ++-- .../version-3.x/monthly-update/2022/04.md | 2 +- .../version-3.x/monthly-update/2022/09.md | 4 ++-- versioned_docs/version-5.x/intro/upcoming-events.md | 4 ++-- versioned_docs/version-5.x/monthly-update/2022/04.md | 2 +- versioned_docs/version-5.x/monthly-update/2022/09.md | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/intro/upcoming-events.md b/docs/intro/upcoming-events.md index 038f594a5c..d6fd4393fd 100644 --- a/docs/intro/upcoming-events.md +++ b/docs/intro/upcoming-events.md @@ -10,7 +10,7 @@ slug: /upcoming-events ### April 5, 2023 | Office Hours We will be having the first ever ink! Office Hours: -[more details](https://twitter.com/ink_lang/status/1641103674561929216). +[more details](https://x.com/ink_lang/status/1641103674561929216). We will talk a bit about what is currently going on and answer questions. The idea is to have this as a regular event, we target the first Wednesday of each month. @@ -19,4 +19,4 @@ The idea is to have this as a regular event, we target the first Wednesday of ea Astar is launching ink! support on their mainnet. You can read more about the Wasm launch day -[here](https://twitter.com/AstarNetwork/status/1640352674611884033). +[here](https://x.com/AstarNetwork/status/1640352674611884033). diff --git a/docs/monthly-update/2022/04.md b/docs/monthly-update/2022/04.md index 6d4757aeab..47b5dfa90f 100644 --- a/docs/monthly-update/2022/04.md +++ b/docs/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/docs/monthly-update/2022/09.md b/docs/monthly-update/2022/09.md index 4a79512482..5f967cacea 100644 --- a/docs/monthly-update/2022/09.md +++ b/docs/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 diff --git a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md index 6d4757aeab..47b5dfa90f 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md index 4a79512482..5f967cacea 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 diff --git a/versioned_docs/version-5.x/intro/upcoming-events.md b/versioned_docs/version-5.x/intro/upcoming-events.md index 038f594a5c..d6fd4393fd 100644 --- a/versioned_docs/version-5.x/intro/upcoming-events.md +++ b/versioned_docs/version-5.x/intro/upcoming-events.md @@ -10,7 +10,7 @@ slug: /upcoming-events ### April 5, 2023 | Office Hours We will be having the first ever ink! Office Hours: -[more details](https://twitter.com/ink_lang/status/1641103674561929216). +[more details](https://x.com/ink_lang/status/1641103674561929216). We will talk a bit about what is currently going on and answer questions. The idea is to have this as a regular event, we target the first Wednesday of each month. @@ -19,4 +19,4 @@ The idea is to have this as a regular event, we target the first Wednesday of ea Astar is launching ink! support on their mainnet. You can read more about the Wasm launch day -[here](https://twitter.com/AstarNetwork/status/1640352674611884033). +[here](https://x.com/AstarNetwork/status/1640352674611884033). diff --git a/versioned_docs/version-5.x/monthly-update/2022/04.md b/versioned_docs/version-5.x/monthly-update/2022/04.md index 6d4757aeab..47b5dfa90f 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/04.md +++ b/versioned_docs/version-5.x/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/versioned_docs/version-5.x/monthly-update/2022/09.md b/versioned_docs/version-5.x/monthly-update/2022/09.md index 56e5a81d8b..0fb1158557 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/09.md +++ b/versioned_docs/version-5.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](https://twitter.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 From 42677e3f29783b3c88c3fa8e83770d8c8646bd35 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 11:02:29 +0100 Subject: [PATCH 4/7] Revert "replace twitter.com with x.com" This reverts commit 9428c91dfe3fc2cc29aeb6c9941b2f37c6f4dab2. --- docs/intro/upcoming-events.md | 4 ++-- docs/monthly-update/2022/04.md | 2 +- docs/monthly-update/2022/09.md | 4 ++-- .../version-3.x/monthly-update/2022/04.md | 2 +- .../version-3.x/monthly-update/2022/09.md | 4 ++-- versioned_docs/version-5.x/intro/upcoming-events.md | 4 ++-- versioned_docs/version-5.x/monthly-update/2022/04.md | 2 +- versioned_docs/version-5.x/monthly-update/2022/09.md | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/intro/upcoming-events.md b/docs/intro/upcoming-events.md index d6fd4393fd..038f594a5c 100644 --- a/docs/intro/upcoming-events.md +++ b/docs/intro/upcoming-events.md @@ -10,7 +10,7 @@ slug: /upcoming-events ### April 5, 2023 | Office Hours We will be having the first ever ink! Office Hours: -[more details](https://x.com/ink_lang/status/1641103674561929216). +[more details](https://twitter.com/ink_lang/status/1641103674561929216). We will talk a bit about what is currently going on and answer questions. The idea is to have this as a regular event, we target the first Wednesday of each month. @@ -19,4 +19,4 @@ The idea is to have this as a regular event, we target the first Wednesday of ea Astar is launching ink! support on their mainnet. You can read more about the Wasm launch day -[here](https://x.com/AstarNetwork/status/1640352674611884033). +[here](https://twitter.com/AstarNetwork/status/1640352674611884033). diff --git a/docs/monthly-update/2022/04.md b/docs/monthly-update/2022/04.md index 47b5dfa90f..6d4757aeab 100644 --- a/docs/monthly-update/2022/04.md +++ b/docs/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/docs/monthly-update/2022/09.md b/docs/monthly-update/2022/09.md index 5f967cacea..4a79512482 100644 --- a/docs/monthly-update/2022/09.md +++ b/docs/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 diff --git a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md index 47b5dfa90f..6d4757aeab 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md index 5f967cacea..4a79512482 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-3.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 diff --git a/versioned_docs/version-5.x/intro/upcoming-events.md b/versioned_docs/version-5.x/intro/upcoming-events.md index d6fd4393fd..038f594a5c 100644 --- a/versioned_docs/version-5.x/intro/upcoming-events.md +++ b/versioned_docs/version-5.x/intro/upcoming-events.md @@ -10,7 +10,7 @@ slug: /upcoming-events ### April 5, 2023 | Office Hours We will be having the first ever ink! Office Hours: -[more details](https://x.com/ink_lang/status/1641103674561929216). +[more details](https://twitter.com/ink_lang/status/1641103674561929216). We will talk a bit about what is currently going on and answer questions. The idea is to have this as a regular event, we target the first Wednesday of each month. @@ -19,4 +19,4 @@ The idea is to have this as a regular event, we target the first Wednesday of ea Astar is launching ink! support on their mainnet. You can read more about the Wasm launch day -[here](https://x.com/AstarNetwork/status/1640352674611884033). +[here](https://twitter.com/AstarNetwork/status/1640352674611884033). diff --git a/versioned_docs/version-5.x/monthly-update/2022/04.md b/versioned_docs/version-5.x/monthly-update/2022/04.md index 47b5dfa90f..6d4757aeab 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/04.md +++ b/versioned_docs/version-5.x/monthly-update/2022/04.md @@ -65,7 +65,7 @@ There's a lot on the horizon and we're enthusiastic about the rest of this year! ## Spanish Twitter Space 🐦 [Hernando](https://github.com/hcastano) was a guest at the spanish Polkadot -Twitter Space. The space has been recorded: https://x.com/i/spaces/1MnGnkgmNdBJO. +Twitter Space. The space has been recorded: https://twitter.com/i/spaces/1MnGnkgmNdBJO. ## StackExchange Public Beta diff --git a/versioned_docs/version-5.x/monthly-update/2022/09.md b/versioned_docs/version-5.x/monthly-update/2022/09.md index 0fb1158557..56e5a81d8b 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/09.md +++ b/versioned_docs/version-5.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](https://x.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](https://twitter.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 From 520d9b3435189af71cb2b9d2ed96a962e05e03a8 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 11:02:44 +0100 Subject: [PATCH 5/7] Revert "explicitly use https instead of http" This reverts commit 81f26c2edb8ba1c53f37bd3f70af50984140c7ac. --- versioned_docs/version-5.x/intro/how-it-works.md | 4 ++-- versioned_docs/version-5.x/intro/intro.mdx | 4 ++-- versioned_docs/version-5.x/monthly-update/2022/09.md | 6 +++--- versioned_docs/version-5.x/monthly-update/2022/10.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/versioned_docs/version-5.x/intro/how-it-works.md b/versioned_docs/version-5.x/intro/how-it-works.md index cc099b4c4f..444fbae69f 100644 --- a/versioned_docs/version-5.x/intro/how-it-works.md +++ b/versioned_docs/version-5.x/intro/how-it-works.md @@ -8,13 +8,13 @@ slug: /how-it-works # How it Works – Substrate -ink! is a programming language for smart contracts; blockchains built with [the Substrate framework](https://substrate.io) +ink! is a programming language for smart contracts; blockchains built with [the Substrate framework](http://substrate.io) can choose from a number of smart contract languages which one(s) they want to support. ink! is one of them. It is an opinionated language that we have built by extending the popular Rust programming language with functionality needed to make it smart contract compatible. ## How does ink! tie into Substrate? -[Substrate](https://substrate.io) is a framework for building blockchains – those can be standalone blockchains or blockchains connected to [Kusama](https://kusama.network) or [Polkadot](https://polkadot.network), so called _parachains_. Substrate contains a number of modules, in Substrate terminology those are called _pallets_. Substrate comes with a set of pallets for many requirements modern blockchains typically have – staking, fungible tokens, non-fungible tokens, governance, etc. +[Substrate](https://substrate.io) is a framework for building blockchains – those can be standalone blockchains or blockchains connected to [Kusama](http://kusama.network) or [Polkadot](http://polkadot.network), so called _parachains_. Substrate contains a number of modules, in Substrate terminology those are called _pallets_. Substrate comes with a set of pallets for many requirements modern blockchains typically have – staking, fungible tokens, non-fungible tokens, governance, etc. Substrate also ships with a module for smart contracts, this module is called `pallet-contracts`. If a parachain is developed in Substrate it can easily add smart contract functionality by including this pallet. diff --git a/versioned_docs/version-5.x/intro/intro.mdx b/versioned_docs/version-5.x/intro/intro.mdx index 9f690f1baa..7e81cf0025 100644 --- a/versioned_docs/version-5.x/intro/intro.mdx +++ b/versioned_docs/version-5.x/intro/intro.mdx @@ -24,7 +24,7 @@ hide_table_of_contents: true   - +
@@ -144,7 +144,7 @@ hide_table_of_contents: true
diff --git a/versioned_docs/version-5.x/monthly-update/2022/09.md b/versioned_docs/version-5.x/monthly-update/2022/09.md index 56e5a81d8b..4a79512482 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/09.md +++ b/versioned_docs/version-5.x/monthly-update/2022/09.md @@ -39,7 +39,7 @@ The meetups were packed! On the first floor of our office in Berlin we counted 9 ## Twitter 🐣 -The bird has hatched! We've set up a Twitter account: [@ink_lang](https://twitter.com/ink_lang), +The bird has hatched! We've set up a Twitter account: [@ink_lang](http://twitter.com/ink_lang), where we'll tweet about anything we find interesting. ## ink! 4.0 is shaping up 📈 @@ -54,7 +54,7 @@ We aim for a stable release of ink! `v4.0` and `cargo-contract` `v2.0` in late O You can find the tracking issue for ink! 4.0 [here](https://github.com/paritytech/ink/issues/1343). Please note that we've moved XCM support to the roadmap of a 4.1 release, so it won't be -included in 4.0. XCM support won't be a breaking change, hence we can put it into a +included in 4.0. XCM support won't be a breaking change, hence we can put it into a subsequent 4.1. ## Polkadot Forum 📣 @@ -69,5 +69,5 @@ This changes now with the Polkadot Forum: ## New Domain 🏠 -We've moved this documentation portal from `use.ink` to a new domain: [`use.ink`](https://use.ink). +We've moved this documentation portal from `use.ink` to a new domain: [`use.ink`](http://use.ink). It was a three letter domain, we just couldn't resist! diff --git a/versioned_docs/version-5.x/monthly-update/2022/10.md b/versioned_docs/version-5.x/monthly-update/2022/10.md index f9034e9997..acc578b5af 100644 --- a/versioned_docs/version-5.x/monthly-update/2022/10.md +++ b/versioned_docs/version-5.x/monthly-update/2022/10.md @@ -21,7 +21,7 @@ It did and there will be many more academies! Starting with the next one, which is happening in January and February 2023 in Buenos Aires. We will also be giving lectures there again! You can find more -details on [https://dot.li/academy](https://dot.li/academy). +details on [http://dot.li/academy](http://dot.li/academy). ## Astar ported Uniswap v2 to ink! 💱 From 7dfc05eeb50d8b1cdca2e6406dc436e94f4220d9 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 11:07:18 +0100 Subject: [PATCH 6/7] enable quiet mode as it's otherwise hard to find broken links in all the output logs --- .github/workflows/link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 82dbd2ea32..5702cfba17 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -15,6 +15,6 @@ jobs: - uses: actions/checkout@v3 - uses: gaurav-nelson/github-action-markdown-link-check@v1 with: - use-verbose-mode: 'yes' + use-quiet-mode: 'yes' config-file: '.github/workflows/mlc_config.json' folder-path: 'docs/' \ No newline at end of file From 87fe931c1bf36650e5788060151f4b25f66590c4 Mon Sep 17 00:00:00 2001 From: peetzweg/ Date: Fri, 5 Jan 2024 11:08:36 +0100 Subject: [PATCH 7/7] ignore twitter/x links as it's broken see https://github.com/gaurav-nelson/github-action-markdown-link-check/issues/182 --- .github/workflows/mlc_config.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mlc_config.json b/.github/workflows/mlc_config.json index 6cabb3fc2f..cd9c9d9410 100644 --- a/.github/workflows/mlc_config.json +++ b/.github/workflows/mlc_config.json @@ -11,12 +11,18 @@ ], "httpHeaders": [ { - "urls": [ - "https://crates.io" - ], + "urls": ["https://crates.io"], "headers": { "Accept": "text/html" } } + ], + "ignorePatterns": [ + { + "pattern": "^https?://twitter.com" + }, + { + "pattern": "^https?://x.com" + } ] }