Skip to content

Commit

Permalink
Merge pull request #209 from AstraProtocol/upgrade-cosmos-v46
Browse files Browse the repository at this point in the history
deps: bump cosmos-sdk v0.46 and evmos v12
  • Loading branch information
Thanh Nguyen authored Aug 21, 2023
2 parents 9a28d74 + 8de6cde commit df20608
Show file tree
Hide file tree
Showing 108 changed files with 1,875 additions and 2,893 deletions.
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

0 comments on commit df20608

Please sign in to comment.