From 0e325de277794e9b68f6caf4da0fe4a33101c99e Mon Sep 17 00:00:00 2001 From: Dariusz Depta Date: Wed, 14 Aug 2024 21:11:34 +0200 Subject: [PATCH] Updated links in features. --- src/pages/cw-multi-test/_meta.json | 1 + src/pages/cw-multi-test/app-builder.mdx | 27 +++++++++++++++++++++++++ src/pages/cw-multi-test/features.mdx | 26 ++++++++++++------------ 3 files changed, 41 insertions(+), 13 deletions(-) create mode 100644 src/pages/cw-multi-test/app-builder.mdx diff --git a/src/pages/cw-multi-test/_meta.json b/src/pages/cw-multi-test/_meta.json index 9a7cab64..56fcd229 100644 --- a/src/pages/cw-multi-test/_meta.json +++ b/src/pages/cw-multi-test/_meta.json @@ -2,6 +2,7 @@ "installation": "Installation", "features": "Features", "getting-started": "Getting started", + "app-builder": "AppBuilder", "blocks": "Blocks", "plan": "[Plan]" } diff --git a/src/pages/cw-multi-test/app-builder.mdx b/src/pages/cw-multi-test/app-builder.mdx new file mode 100644 index 00000000..ece1b8a3 --- /dev/null +++ b/src/pages/cw-multi-test/app-builder.mdx @@ -0,0 +1,27 @@ +--- +tags: ["multitest", "AppBuilder"] +--- + +# AppBuilder + +## with_block + +## with_api + +## with_storage + +## with_bank + +## with_staking + +## with_distribution + +## with_gov + +## with_stargate + +## with_wasm + +## new_custom + +## with_ibc diff --git a/src/pages/cw-multi-test/features.mdx b/src/pages/cw-multi-test/features.mdx index b71f43cd..bd31fff1 100644 --- a/src/pages/cw-multi-test/features.mdx +++ b/src/pages/cw-multi-test/features.mdx @@ -11,19 +11,19 @@ not have a default implementation for the feature, users may provide their own, function listed in **"AppBuilder constructor"** column. Names of **`MultiTest`** feature flags required to enable specific functionality are provided in the column **"Feature flag"**. -| Feature | Default
implementation | Feature
flag | AppBuilder
constructor | Functionality | -| --------------- | :------------------------: | :--------------: | -------------------------- | -------------------------------------------------- | -| [Block](blocks) | **YES** | | `with_block` | Operations on blocks. | -| API | **YES** | | `with_api` | Access to CosmWasm API. | -| Storage | **YES** | | `with_storage` | Access to storage. | -| Bank | **YES** | | `with_bank` | Interactions with **Bank** module. | -| Staking | **YES** | `staking` | `with_staking` | Interactions with **Staking** module. | -| Distribution | **YES** | `staking` | `with_distribution` | Interactions with **Distribution** module. | -| Governance | **NO** | | `with_gov` | Interactions with **Governance** module. | -| Stargate | **NO** | `stargate` | `with_stargate` | Operations using `Stargate` and/or `Any` messages. | -| Wasm | **YES** | | `with_wasm` | Interactions with **Wasm** module. | -| Custom | **NO** | | `new_custom` | Operations using custom module. | -| IBC | **NO** | `stargate` | `with_ibc` | Inter-blockchain communication operations. | +| Feature | Default
implementation | Feature
flag | AppBuilder
constructor | Functionality | +| ---------------- | :------------------------: | :--------------: | ---------------------------------------------------- | -------------------------------------------------- | +| [Blocks](blocks) | **YES** | | [`with_block`](app-builder#with_block) | Operations on blocks. | +| API | **YES** | | [`with_api`](app-builder#with_api) | Access to CosmWasm API. | +| Storage | **YES** | | [`with_storage`](app-builder#with_storage) | Access to storage. | +| Bank | **YES** | | [`with_bank`](app-builder#with_bank) | Interactions with **Bank** module. | +| Staking | **YES** | `staking` | [`with_staking`](app-builder#with_staking) | Interactions with **Staking** module. | +| Distribution | **YES** | `staking` | [`with_distribution`](app-builder#with_distribution) | Interactions with **Distribution** module. | +| Governance | **NO** | | [`with_gov`](app-builder#with_gov) | Interactions with **Governance** module. | +| Stargate | **NO** | `stargate` | [`with_stargate`](app-builder#with_stargate) | Operations using `Stargate` and/or `Any` messages. | +| Wasm | **YES** | | [`with_wasm`](app-builder#with_wasm) | Interactions with **Wasm** module. | +| Custom | **NO** | | [`new_custom`](app-builder#new_custom) | Operations using custom module. | +| IBC | **NO** | `stargate` | [`with_ibc`](app-builder#with_ibc) | Inter-blockchain communication operations. | ## Feature flags summary