Riccardo
Riccardo
## Description ADR to implement a stateful handling of `x/authz` authorizations as described inside https://github.com/cosmos/cosmos-sdk/issues/11583 Closes: #XXXX --- ### Author Checklist *All items are required. Please add a note to...
This PR improves the overall code of `StargateClient` and `SigningStargateClient`. The main changes are the following: - introduced a new `StargateClientOptions` interface that allows setting custom options for `StargateClient`. The...
Currently the project heavily depends on some methods that are available only on the JVM platform. For example, we can see the usage of `System.arrayCopy` method used in a lot...
Currently inside the `crypto_api` package we find the following piece of code: ```kotlin fun loadClass(name: String): T = try { @Suppress("UNCHECKED_CAST") Class.forName("org.kethereum.crypto.impl.$name").newInstance() as T } catch (e: ClassNotFoundException) { throw...
## Description This PR prepares release `v4.4.1` as a patch to `v4.4.0` due to the missing on-chain upgrade handler in that version. --- ### Author Checklist *All items are required....
[Cosmos v0.46.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.46.0) has been released, and it contains a lot of changes. Before upgrading to it we need to make sure the following dependencies are ready (I will use the...
## Description This PR updates `cosmos/cosmos-sdk` to `v0.46.0` as well as `cosmos/ibc-go` and `CosmWasm/wasmd` to the proper compatible versions. Closes: #976 --- ### Author Checklist *All items are required. Please...
## Context Currently inside Desmos we have the following Tendermint consensus params set: * `create_empty_blocks`: `true` * `create_empty_blocks_interval`: `0s` * `timeout_commit`: `1s` * `timeout_propose`: `3s` * `peer_gossip_sleep_duration`: `100ms` This has...
With the upcoming release of IBC 3.0, the [Interchain Accounts module](https://github.com/cosmos/ibc-go/tree/main/modules/apps/27-interchain-accounts) will make its debut into the IBC world. This module allows to create an IBC connection between on-chain accounts...
Currently all the simulation tests are returning functions that implement the `simtypes.Operation` type: ```go // Operation runs a state machine transition, and ensures the transition // happened as expected. The...