Paul Chen

Results 12 issues of Paul Chen

## Description Closes: #XXXX After `x/profiles` proto version upgrades, the test case of multi signature chain link should be modified to the specified version as well. This PR adds the...

## Feature description Currently, Desmos chain link supports bech32, base58 and hex address, but each of them utilize only one hash algorithm to generate address from the key, says: *...

kind/new-feature

Currently, to broadcast a transaction with a fee granter only can be implemented by manually signing tranasction because `signAndBroadCast` does not support `feeGranter` parameter. ```js const gasEstimation = await client!.simulate(creator,...

#### System information Erigon version: erigon version 2.57.0-4f6eda76 OS & Version: Linux Ubuntu 22.04.2 LTS Commit hash: [2.57.0-4f6eda76](https://github.com/ledgerwatch/erigon/commit/4f6eda7694b4f33d2f907b40088e3a83192b5c2c) Consensus Layer: ```bash Lighthouse v4.5.0-441fc16 BLS library: blst-modern SHA256 hardware acceleration: true...

## Description Closes: #XXXX This PR bumps cosmos-sdk to v0.50.0, ibc-go to v8 and wasmd to v0.50.0. --- ### Author Checklist *All items are required. Please add a note to...

x/profiles
kind/ci
x/subspaces
x/CLI
kind/build
x/relationships

## Description Closes: #XXXX This PR adds parse gov params command for updating gov params easily after the schema upgrade. --- ### Author Checklist *All items are required. Please add...

## Description Closes: #XXXX This PR fixes swagger page to show proper frontend and includes cosmos-sdk queries and services to swagger file. --- ### Author Checklist *All items are required....

x/CLI
kind/build

## Description Closes: #XXXX --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to...

Support get block by tag like "latest", "finalized", etc. https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblockbynumber

```golang block, err := web3.Eth.GetBlockByNumber(big.NewInt(20969088), false) if err != nil { panic(err) } ``` Error: ``` panic: json: cannot unmarshal string into Go struct field rpcBlock.transactions of type types.txJSON goroutine...