egon-wm

Results 6 issues of egon-wm

**Describe the bug** I'm running 4 node-service chain with klaytn v1.9.0 and I configured kip71 parameters as follows. ``` governance.vote("kip71.lowerboundbasefee", 0) governance.vote("kip71.upperboundbasefee", 0) ``` After two epoch, I found that...

In calculating `maxPriorityFeePerGas` as following code: https://github.com/MetaMask/core/blob/1dadf04f77211e3650d36be86aa0934750ec9a44/packages/gas-fee-controller/src/fetchGasEstimatesViaEthFeeHistory/calculateGasFeeEstimatesForPriorityLevels.ts#L75 ``` const medianPriorityFee = medianOf(priorityFees); const adjustedPriorityFee = medianPriorityFee .mul(settings.priorityFeePercentageMultiplier) .divn(100); ``` If minimum priority fee in block history is same to the...

team-confirmations

## Description and context I'm working at developing my bridge app on base-goerli chain. My app seems to have been published successfully, but VAA is not being generated. curl https://wormhole-v2-testnet-api.certus.one/v1/signed_vaa/30/000000000000000000000000c60ccd9c69d02429ee8db14773b43075626fb8c1/1...

bug

**Ostracon version** (use `ostracon version` or `git rev-parse --verify HEAD` if installed from source): latest **ABCI app** (name for built-in, URL for self-written if it's publicly available): **Environment**: - **OS**...

C: bug
Stale

## Summary The constant `maxPerPage` of `rpc/core/env.go` is hard-coded currently. But it's better to change this value to be configurable. ``` maxPerPage = 10000 ``` ## Problem Definition ## Proposal...

C: enhancement
D: good first issue
Stale
P: nice to have

## Summary We can(and must) remove the global mutex of abci client if abci server(app) controls concurrency by itself. If app controls concurrency by itself, we can have more chance...

C: enhancement
Stale
P: nice to have