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

EVM support #30

Open
wants to merge 46 commits into
base: v0.50.x-inj
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
d78c893
Problem: parallel tx execution is not supported (#205)
yihuang Mar 22, 2024
56cb96c
Problem: CacheWrapWithTrace api is not used (#207)
yihuang Mar 25, 2024
20ee0a3
Problem: dependencies in store is not consistent (#235)
yihuang Mar 25, 2024
90f3048
Support object store (#206)
yihuang Mar 25, 2024
4d32911
prefix store support object store (#236)
yihuang Mar 27, 2024
9ef65ec
Problem: fee collection not compatible with parallel execution (#237)
yihuang Mar 28, 2024
b693dd9
Problem: no efficient bank api to support evm add/sub balances (#239)
yihuang Mar 29, 2024
5051618
Problem: MultiStore interface is bloated (#240)
yihuang Mar 29, 2024
2484db0
Problem: nested cache store not efficient (#241)
yihuang Mar 29, 2024
56f3e15
Problem: many memory allocs in cache store wrapping (#242)
yihuang Apr 1, 2024
7d01116
Problem: no API to use the new CoW branch store (#243)
yihuang Apr 1, 2024
77efecc
Problem: store key type assertion is incorrect (#244)
yihuang Apr 1, 2024
ec314e8
Problem: Restore don't work snapshot revert usage (#245)
yihuang Apr 2, 2024
829c542
Revert "Problem: no efficient bank api to support evm add/sub balance…
yihuang Apr 2, 2024
1c80a47
feat: save some memory allocations on un-used cache store (#248)
yihuang Apr 3, 2024
fecb1b0
Problem: block gas used not set in context (#252)
yihuang Apr 3, 2024
29d3142
Problem: invalid tx returns negative gas wanted (#253)
yihuang Apr 3, 2024
0bb12ec
Problem: no api to create cachemulti store from external cache store …
yihuang Apr 5, 2024
56c1655
small optimisations (#261)
yihuang Apr 8, 2024
5ad2d9a
Problem: can't extend abci listeners in streaming manager (#269)
yihuang Apr 8, 2024
b2be50d
Problem: x/tx not up to date to the released version (#279)
yihuang Apr 10, 2024
e8854d5
Problem: automatic signer getter don't support bytes field (#276)
yihuang Apr 10, 2024
ab87a3a
fix: bootstrap-state command can't parse latest genesis format (#289)
yihuang Apr 15, 2024
0108877
Release/v0.50.x backport (#298)
mmsqe Apr 15, 2024
8d30134
feat: expose db keyring used in the keystore (#384)
mmsqe Jun 3, 2024
cf12e5a
Problem: v0.50.x is outdated (#392)
mmsqe Jun 4, 2024
36295f0
Problem: mempool don't respect gas wanted returned by ante handler (#…
yihuang Jun 26, 2024
52a97a8
Problem: mempool.GasTx interface is not reused (#536)
mmsqe Jul 2, 2024
1e75c9a
Merge remote-tracking branch 'cronos/release/v0.50.x' into v0.50.x-in…
kakysha Jul 3, 2024
6c4b199
fix: compilation after merge
kakysha Jul 3, 2024
ebb17ff
Merge branch 'v0.50.x-inj' into v0.50.x-inj-evm
kakysha Jul 10, 2024
9b7c5d2
Merge branch 'v0.50.x-inj' into v0.50.x-inj-evm
kakysha Jul 24, 2024
dee892b
fix: compilation
kakysha Jul 25, 2024
fcf57a5
Merge branch 'v0.50.x-inj' into v0.50.x-inj-evm
kakysha Aug 4, 2024
7ccb4ed
chore: fix compile
arrivets Sep 4, 2024
69713c6
chore: revert changes to SendRestrictionFn
arrivets Sep 4, 2024
b4127ec
chore: fix compile bank/types/restrictions_test
arrivets Sep 4, 2024
7be9b7c
Merge branch 'v0.50.x-inj' into v0.50.x-inj-evm
kakysha Sep 10, 2024
93c431f
feat: add LastBlockID to cometbft header
arrivets Oct 9, 2024
2a24209
Merge pull request #31 from InjectiveLabs/feat/add-header-last-block-…
kakysha Oct 9, 2024
e87c446
feat: add fields to cometbft header
arrivets Oct 10, 2024
de2b519
Merge pull request #32 from InjectiveLabs/feat/add-header-last-block-…
kakysha Oct 10, 2024
acf19ad
chore: update cometbft version
arrivets Oct 14, 2024
224eb95
Merge pull request #33 from InjectiveLabs/feat/add-header-last-block-…
kakysha Oct 14, 2024
5654da5
fix: set correct header.AppHash field in internalFinalizeBlock
arrivets Nov 6, 2024
789f4f2
Merge pull request #34 from InjectiveLabs/fix/header-app-hash
kakysha Nov 6, 2024
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
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: core/go.sum
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: depinject/go.sum
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: errors/go.sum
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: math/go.sum
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: orm/go.sum
Expand Down Expand Up @@ -596,7 +596,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: store/go.sum
Expand Down Expand Up @@ -627,7 +627,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: log/go.sum
Expand Down
10 changes: 0 additions & 10 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@ linters:
- exportloopref
- goconst
- gocritic
- gci
- gofumpt
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- nolintlint
- staticcheck
- revive
- stylecheck
Expand Down Expand Up @@ -63,14 +61,6 @@ issues:
max-same-issues: 10000

linters-settings:
gci:
custom-order: true
sections:
- standard # Standard section: captures all standard packages.
- default # Default section: contains all imports that could not be matched to another section type.
- prefix(cosmossdk.io)
- prefix(github.com/cosmos/cosmos-sdk)

gosec:
# To select a subset of rules to run.
# Available rules: https://github.com/securego/gosec#available-rules
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,36 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Features

* (baseapp) [#205](https://github.com/crypto-org-chain/cosmos-sdk/pull/205) Add `TxExecutor` baseapp option, add `TxIndex`/`TxCount`/`MsgIndex`/`BlockGasUsed` fields to `Context, to support tx parallel execution.
* (baseapp) [#206](https://github.com/crypto-org-chain/cosmos-sdk/pull/206) Support mount object store in baseapp, add `ObjectStore` api in context.
* (bank) [#237](https://github.com/crypto-org-chain/cosmos-sdk/pull/237) Support virtual accounts in sending coins.
* [#243](https://github.com/crypto-org-chain/cosmos-sdk/pull/243) Support `RunAtomic` API in `Context` to use new CoW branched cache store.
* [#248](https://github.com/crypto-org-chain/cosmos-sdk/pull/248) Init btree store lazily to save allocations when no content insert into it.
* [#252](https://github.com/crypto-org-chain/cosmos-sdk/pull/252) Add `BlockGasWanted` to `Context` to support feemarket module.
* [#269](https://github.com/crypto-org-chain/cosmos-sdk/pull/269) Add `StreamingManager` to baseapp to extend the abci listeners.
* (crypto/keyring) [#20212](https://github.com/cosmos/cosmos-sdk/pull/20212) Expose the db keyring used in the keystore.

### Improvements

* [#261](https://github.com/crypto-org-chain/cosmos-sdk/pull/261) `ctx.BlockHeader` don't do protobuf deep copy, shallow copy seems enough, reduce scope of mutex in `PriorityNonceMempool.Remove`.
* (debug) [#20328](https://github.com/cosmos/cosmos-sdk/pull/20328) Add consensus address for debug cmd.
* (runtime) [#20264](https://github.com/cosmos/cosmos-sdk/pull/20264) Expose grpc query router via depinject.
* (x/consensus) [#20381](https://github.com/cosmos/cosmos-sdk/pull/20381) Use Comet utility for consensus module consensus param updates.
* (client) [#20356](https://github.com/cosmos/cosmos-sdk/pull/20356) Overwrite client context when available in `SetCmdClientContext`.
* (baseapp) [#20346](https://github.com/cosmos/cosmos-sdk/pull/20346) Correctly assign `execModeSimulate` to context for `simulateTx`.
* (baseapp) [#20144](https://github.com/cosmos/cosmos-sdk/pull/20144) Remove txs from mempool when antehandler fails in recheck.
* (baseapp) [#20107](https://github.com/cosmos/cosmos-sdk/pull/20107) Avoid header height overwrite block height.
* (cli) [#20020](https://github.com/cosmos/cosmos-sdk/pull/20020) Make bootstrap-state command support both new and legacy genesis format.
* [#507](https://github.com/crypto-org-chain/cosmos-sdk/pull/507) mempool respect gas wanted returned by ante handler

### Bug Fixes

* (x/bank) [#20028](https://github.com/cosmos/cosmos-sdk/pull/20028) Align query with multi denoms for send-enabled.

## [Unreleased-Upstream]

### Features

* (types) [#19759](https://github.com/cosmos/cosmos-sdk/pull/19759) Align SignerExtractionAdapter in PriorityNonceMempool Remove.
* (client) [#19870](https://github.com/cosmos/cosmos-sdk/pull/19870) Add new query command `wait-tx`. Alias `event-query-tx-for` to `wait-tx` for backward compatibility.

Expand Down
120 changes: 86 additions & 34 deletions baseapp/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,11 @@ func (app *BaseApp) ApplySnapshotChunk(req *abci.RequestApplySnapshotChunk) (*ab
func (app *BaseApp) CheckTx(req *abci.RequestCheckTx) (*abci.ResponseCheckTx, error) {
var mode execMode

switch {
case req.Type == abci.CheckTxType_New:
switch req.Type {
case abci.CheckTxType_New:
mode = execModeCheck

case req.Type == abci.CheckTxType_Recheck:
case abci.CheckTxType_Recheck:
mode = execModeReCheck

default:
Expand Down Expand Up @@ -724,6 +724,19 @@ func (app *BaseApp) internalFinalizeBlock(ctx context.Context, req *abci.Request
ProposerAddress: req.ProposerAddress,
NextValidatorsHash: req.NextValidatorsHash,
AppHash: app.LastCommitID().Hash,
ValidatorsHash: req.ValidatorsHash,
ConsensusHash: req.ConsensusHash,
DataHash: req.DataHash,
EvidenceHash: req.EvidenceHash,
Comment on lines 724 to +730
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change potentially affects state.

Call sequence:

(*github.com/cosmos/cosmos-sdk/baseapp.BaseApp).internalFinalizeBlock (baseapp/abci.go:703)
(*github.com/cosmos/cosmos-sdk/baseapp.BaseApp).FinalizeBlock (baseapp/abci.go:876)

LastCommitHash: req.LastCommitHash,
LastResultsHash: req.LastResultsHash,
LastBlockId: cmtproto.BlockID{
Hash: req.LastBlockHash,
PartSetHeader: cmtproto.PartSetHeader{
Total: uint32(req.LastBlockPartSetTotal),
Hash: req.LastBlockPartSetHash,
},
},
}

// finalizeBlockState should be set on InitChain or ProcessProposal. If it is
Expand Down Expand Up @@ -798,48 +811,48 @@ func (app *BaseApp) internalFinalizeBlock(ctx context.Context, req *abci.Request

// Reset the gas meter so that the AnteHandlers aren't required to
gasMeter = app.getBlockGasMeter(app.finalizeBlockState.Context())
app.finalizeBlockState.SetContext(app.finalizeBlockState.Context().WithBlockGasMeter(gasMeter))
app.finalizeBlockState.SetContext(
app.finalizeBlockState.Context().
WithBlockGasMeter(gasMeter).
WithTxCount(len(req.Txs)),
)

// Iterate over all raw transactions in the proposal and attempt to execute
// them, gathering the execution results.
//
// NOTE: Not all raw transactions may adhere to the sdk.Tx interface, e.g.
// vote extensions, so skip those.
txResults := make([]*abci.ExecTxResult, 0, len(req.Txs))
for _, rawTx := range req.Txs {
var response *abci.ExecTxResult

if _, err := app.txDecoder(rawTx); err == nil {
response = app.deliverTx(rawTx)
} else {
// In the case where a transaction included in a block proposal is malformed,
// we still want to return a default response to comet. This is because comet
// expects a response for each transaction included in a block proposal.
response = sdkerrors.ResponseExecTxResultWithEvents(
sdkerrors.ErrTxDecode,
0,
0,
nil,
false,
)
}

// check after every tx if we should abort
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
// continue
}

txResults = append(txResults, response)
txResults, err := app.executeTxs(ctx, req.Txs)
if err != nil {
// usually due to canceled
return nil, err
}

if app.finalizeBlockState.ms.TracingEnabled() {
app.finalizeBlockState.ms = app.finalizeBlockState.ms.SetTracingContext(nil).(storetypes.CacheMultiStore)
}

endBlock, err := app.endBlock(app.finalizeBlockState.Context())
var (
blockGasUsed uint64
blockGasWanted uint64
)
for _, res := range txResults {
// GasUsed should not be -1 but just in case
if res.GasUsed > 0 {
blockGasUsed += uint64(res.GasUsed)
}
// GasWanted could be -1 if the tx is invalid
if res.GasWanted > 0 {
blockGasWanted += uint64(res.GasWanted)
}
}
app.finalizeBlockState.SetContext(
app.finalizeBlockState.Context().
WithBlockGasUsed(blockGasUsed).
WithBlockGasWanted(blockGasWanted),
)

endBlock, err := app.endBlock(ctx)
if err != nil {
return nil, err
}
Expand All @@ -863,6 +876,45 @@ func (app *BaseApp) internalFinalizeBlock(ctx context.Context, req *abci.Request
}, nil
}

func (app *BaseApp) executeTxs(ctx context.Context, txs [][]byte) ([]*abci.ExecTxResult, error) {
if app.txExecutor != nil {
return app.txExecutor(ctx, len(txs), app.finalizeBlockState.ms, func(i int, ms storetypes.MultiStore) *abci.ExecTxResult {
return app.deliverTxWithMultiStore(txs[i], i, ms)
})
}

txResults := make([]*abci.ExecTxResult, 0, len(txs))
for i, rawTx := range txs {
var response *abci.ExecTxResult

if _, err := app.txDecoder(rawTx); err == nil {
response = app.deliverTx(rawTx, i)
} else {
// In the case where a transaction included in a block proposal is malformed,
// we still want to return a default response to comet. This is because comet
// expects a response for each transaction included in a block proposal.
response = sdkerrors.ResponseExecTxResultWithEvents(
sdkerrors.ErrTxDecode,
0,
0,
nil,
false,
)
}

// check after every tx if we should abort
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
// continue
}

txResults = append(txResults, response)
}
return txResults, nil
}

// FinalizeBlock will execute the block proposal provided by RequestFinalizeBlock.
// Specifically, it will execute an application's BeginBlock (if defined), followed
// by the transactions in the proposal, finally followed by the application's
Expand Down Expand Up @@ -1213,7 +1265,7 @@ func (app *BaseApp) CreateQueryContext(height int64, prove bool) (sdk.Context, e
// use custom query multi-store if provided
qms := app.qms
if qms == nil {
qms = app.cms.(storetypes.MultiStore)
qms = storetypes.MultiStore(app.cms)
}

lastBlockHeight := qms.LatestVersion()
Expand Down
Loading
Loading