You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (x/auth/tx) [#14751](https://github.com/cosmos/cosmos-sdk/pull/14751) Remove `.Type()` and `Route()` methods from all msgs and `legacytx.LegacyMsg` interface.
77
78
*[#14691](https://github.com/cosmos/cosmos-sdk/pull/14691) Change behavior of `sdk.StringifyEvents` to not flatten events attributes by events type.
78
79
* This change only affects ABCI message logs, and not the actual events.
79
80
*[#14692](https://github.com/cosmos/cosmos-sdk/pull/14692) Improve RPC queries error message when app is at height 0.
* (x/simulation) [#14751](https://github.com/cosmos/cosmos-sdk/pull/14751) Remove the `MsgType` field from `simulation.OperationInput` struct.
168
170
* (crypto/keyring) [#13734](https://github.com/cosmos/cosmos-sdk/pull/13834) The keyring's `Sign` method now takes a new `signMode` argument. It is only used if the signing key is a Ledger hardware device. You can set it to 0 in all other cases.
169
171
* (x/evidence) [14724](https://github.com/cosmos/cosmos-sdk/pull/14724) Extract Evidence in its own go.mod and rename the package to `cosmossdk.io/x/evidence`.
170
172
* (x/nft) [#14725](https://github.com/cosmos/cosmos-sdk/pull/14725) Extract NFT in its own go.mod and rename the package to `cosmossdk.io/x/nft`.
It extends `proto.Message` and contains the following methods:
65
65
66
-
*`Route() string`: Name of the route for this message. Typically all `message`s in a module have the same route, which is most often the module's name.
67
-
*`Type() string`: Type of the message, used primarily in [events](../core/08-events.md). This should return a message-specific `string`, typically the denomination of the message itself.
*`GetSignBytes() []byte`: Return the canonical byte representation of the message. Used to generate a signature.
70
68
*`GetSigners() []AccAddress`: Return the list of signers. The Cosmos SDK will make sure that each `message` contained in a transaction is signed by all the signers listed in the list returned by this method.
|`tx.height=23`| Query all transactions at height 23 |
59
59
|`message.action='/cosmos.bank.v1beta1.Msg/Send'`| Query all transactions containing a x/bank `Send`[Service `Msg`](../building-modules/03-msg-services.md). Note the `'`s around the value. |
60
-
|`message.action='send'`| Query all transactions containing a x/bank `Send`[legacy `Msg`](../building-modules/03-msg-services.md#legacy-amino-msgs). Note the `'`s around the value. |
61
60
|`message.module='bank'`| Query all transactions containing messages from the x/bank module. Note the `'`s around the value. |
62
61
|`create_validator.validator='cosmosval1...'`| x/staking-specific Event, see [x/staking SPEC](../modules/staking/README.md). |
0 commit comments