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

upgrade: upgrade to vulcanize cosmos v0.46 SMT #35

Merged
merged 48 commits into from
May 23, 2022
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a0e2858
WIP: upgrade cosmos-sdk from 0.45 to SMT 0.46
Apr 11, 2022
8cd1189
fix: fix the eth keys register
Apr 11, 2022
d377665
fix: fix the params init
Apr 11, 2022
92791d5
WIP: trying to migrate auth handlers to middlewares
Apr 20, 2022
feae504
WIP: fix the start cmd
Apr 22, 2022
9d7333d
fix : fix the chain start
Apr 23, 2022
cf0be98
Merge branch 'main' into sai/upgrade_cosmos_v0.46
Apr 23, 2022
fd59a37
fix : fix the conflicts
Apr 23, 2022
e8b0e2c
fix: fix the build issue
Apr 26, 2022
694d4c6
WIP: fixing the test cases
Apr 26, 2022
e6d416d
WIP: fixing the test cases
Apr 26, 2022
19b1635
Merge branch 'main' into sai/upgrade_cosmos_v0.46
gsk967 Apr 26, 2022
8ae41eb
WIP: fixing the test cases
Apr 26, 2022
fde19d2
Merge branch 'sai/upgrade_cosmos_v0.46' of github.com:vulcanize/chiba…
Apr 26, 2022
63b66c1
fix: fix the `make build` issue
Apr 26, 2022
eb1af33
fix: fix the rpc test cases
Apr 28, 2022
752fb39
test: add test cases for middleware
Apr 28, 2022
760cddf
fix: fix the cli test cases for modules
Apr 29, 2022
dda4858
[wip] middleware refactor
roysc May 12, 2022
d1c4da9
[wip] TxExtensionOptionI for ExtensionOptionsEthereumTx
roysc May 12, 2022
75763bf
[wip] cleanup
roysc May 12, 2022
8beea88
fix gas limit panic
roysc May 12, 2022
2102623
test script cleanup
roysc May 13, 2022
3f77c88
[dev] debug stuff
roysc May 13, 2022
075978b
misc cleanup
roysc May 13, 2022
d9c6ab8
ethereum needs "index events middleware"
roysc May 13, 2022
3f94692
middleware refactor
roysc May 12, 2022
00814e2
TxExtensionOptionI for ExtensionOptionsEthereumTx
roysc May 12, 2022
264aa45
cleanup
roysc May 12, 2022
a7aff81
fix gas limit panic
roysc May 12, 2022
9de27fb
test script cleanup
roysc May 13, 2022
4040c34
fix build flags for debugging
roysc May 13, 2022
68187bc
misc cleanup
roysc May 13, 2022
54e49b8
ethereum needs "index events middleware"
roysc May 13, 2022
bfb7020
fix tx response decoding
roysc May 16, 2022
b1f755d
fix tx event query
roysc May 16, 2022
2c9d18f
misc clean up
roysc May 16, 2022
49cd996
Merge branch 'roy/upgrade-to-v0.46' of github.com:vulcanize/chiba-clo…
May 16, 2022
fd887f8
fix: fix the module unit test cases
May 16, 2022
f705908
fix : fix the unit test for modules
May 17, 2022
d0fba5b
Merge pull request #39 from vulcanize/roy/upgrade-to-v0.46
gsk967 May 17, 2022
b34e83a
chore: address the pr comments
May 18, 2022
26238a6
chore: update the `go-ethereum` to v1.10.17
May 18, 2022
f9c4f75
refactor: add ibc-go to app
May 18, 2022
1bbb2d7
chore: small fix
May 18, 2022
11e8276
Apply suggestions from code review
roysc May 18, 2022
92295c3
clean up, rm unused
roysc May 18, 2022
a75f275
chore: fix the appExport failing test cases
May 18, 2022
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
Prev Previous commit
Next Next commit
ethereum needs "index events middleware"
  • Loading branch information
roysc committed May 16, 2022
commit 54e49b83e7eced19a820ea0b7bb2939781f17491
1 change: 1 addition & 0 deletions app/middleware/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func newEthAuthMiddleware(options HandlerOptions) tx.Middleware {
stack := []tx.Middleware{
NewEthSetUpContextMiddleware(options.EvmKeeper),
NewEthMempoolFeeMiddleware(options.EvmKeeper),
authmiddleware.NewIndexEventsTxMiddleware(options.IndexEvents),
NewEthValidateBasicMiddleware(options.EvmKeeper),
NewEthSigVerificationMiddleware(options.EvmKeeper),
NewEthAccountVerificationMiddleware(options.AccountKeeper, options.BankKeeper, options.EvmKeeper),
Expand Down