Skip to content

Commit c93c397

Browse files
committed
docs: updated docs
1 parent 5244912 commit c93c397

File tree

2 files changed

+48
-44
lines changed

2 files changed

+48
-44
lines changed

docs/docs/contract-api/02-execute-msg.mdx

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ This execution is atomic. If any of the `CosmosMsg`s fail, then the entire execu
5656
All applicable `CosmosMsg`s are supported if the channel was opened with `tx_encoding` set to `proto3`.
5757
The `proto3json` encoding is not supported by this contract anymore.
5858

59-
| **CosmosMsg** | `proto3` |
60-
|:------------------------------------------:|:--------:|
61-
| `Stargate` | |
62-
| `BankMsg::Send` | |
63-
| `BankMsg::Burn` | |
64-
| `IbcMsg::Transfer` | |
65-
| `IbcMsg::SendPacket` | N/A |
66-
| `IbcMsg::CloseChannel` | N/A |
67-
| `WasmMsg::*` | |
68-
| `GovMsg::*` | |
69-
| `StakingMsg::Delegate` | |
70-
| `StakingMsg::*` | 🟢 |
71-
| `DistributionMsg::WithdrawDelegatorReward` | 🟢 |
72-
| `DistributionMsg::*` | |
59+
| **CosmosMsg** | **Supported** |
60+
|:------------------------------------------:|:-------------:|
61+
| `Stargate` | |
62+
| `BankMsg::Send` | |
63+
| `BankMsg::Burn` | |
64+
| `IbcMsg::Transfer` | |
65+
| `IbcMsg::SendPacket` | N/A |
66+
| `IbcMsg::CloseChannel` | N/A |
67+
| `WasmMsg::*` | |
68+
| `GovMsg::*` | |
69+
| `StakingMsg::Delegate` | |
70+
| `StakingMsg::*` | 🟢 |
71+
| `DistributionMsg::WithdrawDelegatorReward` | 🟢 |
72+
| `DistributionMsg::*` | |
7373

7474
Note that `🟢` means that the `CosmosMsg` is supported but not tested in the contract's test suite.
7575
These will be tested in the future.
@@ -96,14 +96,16 @@ If both `messages` and `queries` are provided, then the `messages` will be execu
9696

9797
In CosmosSDK, query execution is not generally deterministic. This is the main reason why not all query requests are supported. The supported query requests are:
9898

99-
| **QueryRequest** | `proto3` |
100-
|:-------------------:|:--------:|
101-
| `BankQuery` ||
102-
| `Stargate` ||
103-
| `StakingQuery` ||
104-
| `WasmQuery` ||
105-
| `IbcQuery` ||
106-
| `DistributionQuery` ||
99+
| **QueryRequest** | **Supported** |
100+
|:-------------------------:|:-------------:|
101+
| `BankQuery` ||
102+
| `Stargate` ||
103+
| `WasmQuery::Smart` ||
104+
| `WasmQuery::Raw` ||
105+
| `WasmQuery::ContractInfo` ||
106+
| `WasmQuery::CodeInfo` ||
107+
| `IbcQuery` ||
108+
| `DistributionQuery` ||
107109

108110
Note that not all Stargate queries are supported. Only queries which are marked with [`module_query_safe`](https://github.com/cosmos/cosmos-sdk/blob/27a231ae4816fd8c3ee39a1cc02eccf977fb1b79/proto/cosmos/query/v1/query.proto#L36) tag are supported. You can find a list of supported queries in the [ibc-go documentation](https://ibc.cosmos.network/main/apps/interchain-accounts/messages/#queries) for different versions of ibc-go.
109111

docs/versioned_docs/version-v0.6.x/contract-api/02-execute-msg.mdx

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ This execution is atomic. If any of the `CosmosMsg`s fail, then the entire execu
5656
All applicable `CosmosMsg`s are supported if the channel was opened with `tx_encoding` set to `proto3`.
5757
The `proto3json` encoding is not supported by this contract anymore.
5858

59-
| **CosmosMsg** | `proto3` |
60-
|:------------------------------------------:|:--------:|
61-
| `Stargate` | |
62-
| `BankMsg::Send` | |
63-
| `BankMsg::Burn` | |
64-
| `IbcMsg::Transfer` | |
65-
| `IbcMsg::SendPacket` | N/A |
66-
| `IbcMsg::CloseChannel` | N/A |
67-
| `WasmMsg::*` | |
68-
| `GovMsg::*` | |
69-
| `StakingMsg::Delegate` | |
70-
| `StakingMsg::*` | 🟢 |
71-
| `DistributionMsg::WithdrawDelegatorReward` | 🟢 |
72-
| `DistributionMsg::*` | |
59+
| **CosmosMsg** | **Supported** |
60+
|:------------------------------------------:|:-------------:|
61+
| `Stargate` | |
62+
| `BankMsg::Send` | |
63+
| `BankMsg::Burn` | |
64+
| `IbcMsg::Transfer` | |
65+
| `IbcMsg::SendPacket` | N/A |
66+
| `IbcMsg::CloseChannel` | N/A |
67+
| `WasmMsg::*` | |
68+
| `GovMsg::*` | |
69+
| `StakingMsg::Delegate` | |
70+
| `StakingMsg::*` | 🟢 |
71+
| `DistributionMsg::WithdrawDelegatorReward` | 🟢 |
72+
| `DistributionMsg::*` | |
7373

7474
Note that `🟢` means that the `CosmosMsg` is supported but not tested in the contract's test suite.
7575
These will be tested in the future.
@@ -96,14 +96,16 @@ If both `messages` and `queries` are provided, then the `messages` will be execu
9696

9797
In CosmosSDK, query execution is not generally deterministic. This is the main reason why not all query requests are supported. The supported query requests are:
9898

99-
| **QueryRequest** | `proto3` |
100-
|:-------------------:|:--------:|
101-
| `BankQuery` ||
102-
| `Stargate` ||
103-
| `StakingQuery` ||
104-
| `WasmQuery` ||
105-
| `IbcQuery` ||
106-
| `DistributionQuery` ||
99+
| **QueryRequest** | **Supported** |
100+
|:-------------------------:|:-------------:|
101+
| `BankQuery` ||
102+
| `Stargate` ||
103+
| `WasmQuery::Smart` ||
104+
| `WasmQuery::Raw` ||
105+
| `WasmQuery::ContractInfo` ||
106+
| `WasmQuery::CodeInfo` ||
107+
| `IbcQuery` ||
108+
| `DistributionQuery` ||
107109

108110
Note that not all Stargate queries are supported. Only queries which are marked with [`module_query_safe`](https://github.com/cosmos/cosmos-sdk/blob/27a231ae4816fd8c3ee39a1cc02eccf977fb1b79/proto/cosmos/query/v1/query.proto#L36) tag are supported. You can find a list of supported queries in the [ibc-go documentation](https://ibc.cosmos.network/main/apps/interchain-accounts/messages/#queries) for different versions of ibc-go.
109111

0 commit comments

Comments
 (0)