docs: update version references (backport #23898) (#23899)

Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com>
Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
mergify[bot]
2025-03-05 12:51:29 -05:00
committed by GitHub
co-authored by plubber Alex | Interchain Labs
parent d38bf643ed
commit 89fee9c24c
8 changed files with 1255 additions and 38 deletions
+3 -3
View File
@@ -35,19 +35,19 @@ This package represents the Cosmos SDK implementation of the `client.TxConfig`,
The interface defines a set of methods for creating a `client.TxBuilder`.
```go reference
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/client/tx_config.go#L25-L31
https://github.com/cosmos/cosmos-sdk/tree/release/v0.50.x/client/tx_config.go#L25-L31
```
The default implementation of `client.TxConfig` is instantiated by `NewTxConfig` in `x/auth/tx` module.
```go reference
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/x/auth/tx/config.go#L22-L28
https://github.com/cosmos/cosmos-sdk/tree/release/v0.50.x/x/auth/tx/config.go#L22-L28
```
### `TxBuilder`
```go reference
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/client/tx_config.go#L33-L50
https://github.com/cosmos/cosmos-sdk/tree/release/v0.50.x/client/tx_config.go#L33-L50
```
The [`client.TxBuilder`](https://docs.cosmos.network/main/core/transactions#transaction-generation) interface is as well implemented by `x/auth/tx`.