Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump cosmos-sdk v0.46 and evmos v12 #209

Merged
merged 18 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 111 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,55 @@
<a name="v2.2.4"></a>
## [v2.2.4](https://github.com/AstraProtocol/astra/compare/v2.1.3...v2.2.4) (2023-01-31)

<a name="v2.2.5"></a>
## [v2.2.5](https://github.com/AstraProtocol/astra/compare/v2.2.4...v2.2.5) (2023-03-18)

### Feat

* Vesting account cannot delegate, create validator ([#181](https://github.com/AstraProtocol/astra/issues/181))


<a name="v2.2.5-rc"></a>
## [v2.2.5-rc](https://github.com/AstraProtocol/astra/compare/v2.2.4...v2.2.5-rc) (2023-03-17)

### Chore

* update typo
* update CHANGELOG.md and refactor go.mod
* update Genesis Distribution
* update changelog
* update init.sh
* upadte init.sh
* update script gen
* update swagger
* remove code unused
* remove proto unused

### Deps

* bump ginkgo to v2.7.1, gomega to v1.26.0

### Docs

* add module feeburn

### Feat

* account vesting cannot delegate
* add get total_fee_burn in module fee
* add feeburn rest api
* add module feeburn
* add NewMinGasPriceDecorator

### Fix

* fix validate vesting account
* integer overflow ([#161](https://github.com/AstraProtocol/astra/issues/161))
* totalBurnAmount incorrect
* miss feeburn in ante handler

### Refactor

* update error code
* update logic check burn amount
* remove default MinGasPrice
* remove upgrade handler
* add default DefaultMinGasPrice, DefaultMinGasMultiplier
Expand All @@ -37,6 +60,92 @@

### Test

* check fee burn when test fail
* update unittest for mint module
* update integration tests
* update test_fee_payer ([#159](https://github.com/AstraProtocol/astra/issues/159))
* update test_fee_payer
* update integration tests for mint
* update integration test cases
* upadte integration tests for mint
* update integration test
* add integration test evm tx
* update integration test feeburn
* add feeburn integration test
* fix unittest invalid denom


<a name="v2.2.4"></a>
## [v2.2.4](https://github.com/AstraProtocol/astra/compare/v2.2.4-rc...v2.2.4) (2023-02-01)

### Feat

* add module mint, feeburn ([#157](https://github.com/AstraProtocol/astra/issues/157))


<a name="v2.2.4-rc"></a>
## [v2.2.4-rc](https://github.com/AstraProtocol/astra/compare/v2.2.3-rc...v2.2.4-rc) (2023-01-12)


<a name="v2.2.3-rc"></a>
## [v2.2.3-rc](https://github.com/AstraProtocol/astra/compare/v2.2.2-rc...v2.2.3-rc) (2023-01-12)


<a name="v2.2.2-rc"></a>
## [v2.2.2-rc](https://github.com/AstraProtocol/astra/compare/v2.2.1-rc...v2.2.2-rc) (2023-01-11)

### Refactor

* remove default MinGasPrice
* remove upgrade handler


<a name="v2.2.1-rc"></a>
## [v2.2.1-rc](https://github.com/AstraProtocol/astra/compare/v2.2.0-rc...v2.2.1-rc) (2023-01-05)

### Refactor

* add default DefaultMinGasPrice, DefaultMinGasMultiplier


<a name="v2.2.0-rc"></a>
## [v2.2.0-rc](https://github.com/AstraProtocol/astra/compare/v2.1.3...v2.2.0-rc) (2023-01-05)

### Chore

* update init.sh
* upadte init.sh
* update script gen
* update swagger
* remove code unused
* remove proto unused

### Docs

* add module feeburn

### Feat

* add get total_fee_burn in module fee
* add feeburn rest api
* add module feeburn
* add NewMinGasPriceDecorator

### Fix

* integer overflow ([#161](https://github.com/AstraProtocol/astra/issues/161))
* totalBurnAmount incorrect
* miss feeburn in ante handler

### Refactor

* add handler errror ([#160](https://github.com/AstraProtocol/astra/issues/160))
* update proto
* reorder module
* update astra app

### Test

* update unittest for mint module
* update integration tests
* update test_fee_payer ([#159](https://github.com/AstraProtocol/astra/issues/159))
Expand Down
4 changes: 0 additions & 4 deletions app/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"

ethante "github.com/evmos/ethermint/app/ante"
)

// NewAnteHandler returns an ante handler responsible for attempting to route an
Expand All @@ -18,8 +16,6 @@ func NewAnteHandler(options HandlerOptions) sdk.AnteHandler {
) (newCtx sdk.Context, err error) {
var anteHandler sdk.AnteHandler

defer ethante.Recover(ctx.Logger(), &err)

txWithExtensions, ok := tx.(authante.HasExtensionOptionsTx)
if ok {
opts := txWithExtensions.GetExtensionOptions()
Expand Down
84 changes: 0 additions & 84 deletions app/ante/comission.go

This file was deleted.

Loading
Loading