Skip to content

Commit

Permalink
Updated links in features.
Browse files Browse the repository at this point in the history
  • Loading branch information
DariuszDepta committed Aug 14, 2024
1 parent f736ada commit 0e325de
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 13 deletions.
1 change: 1 addition & 0 deletions src/pages/cw-multi-test/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"installation": "Installation",
"features": "Features",
"getting-started": "Getting started",
"app-builder": "AppBuilder",
"blocks": "Blocks",
"plan": "[Plan]"
}
27 changes: 27 additions & 0 deletions src/pages/cw-multi-test/app-builder.mdx
Original file line number Diff line number Diff line change
@@ -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
26 changes: 13 additions & 13 deletions src/pages/cw-multi-test/features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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<br/>implementation | Feature<br/>flag | AppBuilder<br/>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<br/>implementation | Feature<br/>flag | AppBuilder<br/>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

Expand Down

0 comments on commit 0e325de

Please sign in to comment.