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

feat(str): Single Token Representation v2 #2260

Draft
wants to merge 45 commits into
base: main
Choose a base branch
from

Conversation

Vvaradinov
Copy link
Contributor

Description

This is a feature branch for Single Token Representation v2


Closes #XXX

@github-actions github-actions bot added the tests label Jan 17, 2024
* fix: return RegisterCoinProposal protos and types

* CHANGELOG
@github-actions github-actions bot added the proto label Jan 18, 2024
Copy link

codecov bot commented Jan 18, 2024

Codecov Report

Attention: Patch coverage is 49.75124% with 101 lines in your changes are missing coverage. Please review.

Project coverage is 69.57%. Comparing base (f097735) to head (eb4e4fc).
Report is 108 commits behind head on main.

❗ Current head eb4e4fc differs from pull request most recent head 744b59a. Consider uploading reports for the commit 744b59a to get more accurate results

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #2260      +/-   ##
==========================================
- Coverage   70.45%   69.57%   -0.88%     
==========================================
  Files         293      293              
  Lines       22559    22508      -51     
==========================================
- Hits        15893    15660     -233     
- Misses       5800     5972     +172     
- Partials      866      876      +10     
Files Coverage Δ
ibc/utils.go 83.18% <100.00%> (-3.95%) ⬇️
x/erc20/handler.go 0.00% <ø> (ø)
x/erc20/keeper/proposals.go 75.96% <ø> (ø)
x/erc20/types/codec.go 30.00% <ø> (-1.82%) ⬇️
x/erc20/types/msg.go 87.17% <ø> (-5.47%) ⬇️
x/ibc/transfer/keeper/msg_server.go 100.00% <100.00%> (ø)
x/erc20/keeper/precompiles.go 76.66% <82.35%> (+2.24%) ⬆️
x/evm/types/params.go 70.07% <0.00%> (-2.66%) ⬇️
x/erc20/keeper/ibc_callbacks.go 87.12% <73.33%> (-8.30%) ⬇️
x/erc20/types/proposal.go 59.55% <12.19%> (-31.02%) ⬇️
... and 1 more

... and 4 files with indirect coverage changes

…and tests (#2158)

* chore(erc20): Remove MsgConvertCoin and all it's related protos, types and tests.

* CHANGELOG

* Merge

* fix: remove evm hooks and add LegacyConvertCoin

* fix: add a TODO reminder

* fix: include setupRegisterCoin and add back some tests

* fix: include ERC20 conversion tests back

* fix: fix tests in precompiles

* fix: more tests refactor

* fix: comment panicked tests

* convert all coins to erc20 when receiving ibc packet. fix to convertion

* Format and Lint

* Update x/erc20/keeper/ibc_callbacks_integration_test.go

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* Apply changes from code review

---------

Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Copy link

coderabbitai bot commented Jan 30, 2024

Important

Auto Review Skipped

Draft detected.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository.

To trigger a single review, invoke the @coderabbitai review command.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit-tests for this file.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit tests for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository from git and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

Vvaradinov and others added 2 commits January 31, 2024 17:59
* fix: add new logic for callback

* fix: add logic without the MsgConvertCoin

* CHANGELOG

* apply changes from code review

* fix: merge and resolve conflicts from main feature branch

* fix: remove tests

* fix: add space

* fix: remove println comment

* fix: fix on error acknowledgement and adjust the custom ICS20 Transfer function

* fix: add extra parsing option for 9 decimals (nano)

* fix: return ack without the need for default case

* Apply changes from code review

* fix: apply changes from code review

* fix: remove unreachable case

* fix: remove failed tests

* feat(str): erc20 callback fixes and unit tests (#2300)

* Wip: unit tests for erc20 ibc callbacks

* finished up testing, and fix some logic

* cleanup

* add unit test for IsSingleHop

* Address comments from pr

* rename IsSingleHop and moved telemetry

---------

Co-authored-by: MalteHerrmann <malte@evmos.org>

---------

Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
CHANGELOG.md Outdated Show resolved Hide resolved
MalteHerrmann and others added 11 commits February 8, 2024 11:52
* commit WIP adding utils to convert native coins

* add missing license

* move utils to v17 upgrade package

* remove outdated todo

* remove outdated comment

* commit broken WIP

* add util to get token pairs with integration handler

* enable setting up the erc-20 module in custom genesis

* add migration logic to upgrade handler

* commit WIP setting up custom genesis

* commit wip

* run gofumpt and fix upgrade handler call in app

* fix setting up accounts in custom genesis

* fix setting up EVM genesis

* assert registered token pair and contract address match

* move to genesis_test file

* add case without custom genesis to check EVM keeper balance

* add print statements

* add keyring to genesis accounts to enable sending EVM transactions

* fix setting up the ERC-20 contract with correct storage

* remove unnecessary test that was only used for debugging

* remove outdated balances check

* remove unused baseAccountAddress

* add bech32 account holding ERC-20 coins to funded accounts and genesis

* fix migration tests by adding the module account balance on genesis

* address linters

* refactors and start WIP on ginkgo tests

* add assertions to BDD tests for migration

* check genesis state in BDD tests

* remove migration tests that are not BDD

* remove unnecessary other testing account

* remove duplicate tests for genesis creation

* run gofumpt

* address linters

* add changelog entry

* run make format

* remove outdated todos

* add genesis_test.go to allowed paths for gitleaks toml

* address review comments

* remove outdated comments

* fix changelog

* add tests for WithdrawWEVMOS

* run gofumpt

* Update app/upgrades/v17/upgrades.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* move filtering native coins out of the accounts iteration

---------

Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
* Add native coins ibc tests

* run make format

* fix rename

* run make format

---------

Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
* adjust required gas on ERC20 extension

* run make format

* add changelog entry

* add comment to source for gas values

---------

Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
* TokenPair for native coins are not togglable

* run make format

* check for error

* fix: add custom error for token pair owned by module

* fix: error code

---------

Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vlad <vladislav.varadinov@gmail.com>
* move ERC20 balance utils to testutil folder

* run gofumpt

* add missing license
* add new param

* full implementation

* load abi correctly

* update contract instance

* run make format

* rename function

* add mocks

* run make format

* make erc20keeper a pointer on app.go

* fix typo

* fix EnableDynamicPrecompiles

* improve error

* add comment to app.go

* run make format

* review comments

* remove data folders

* run make format

* refractor state_transition

* fix lint

* run make format

* update comments

* remove unused functions

* wip: fixing dynamic precompiles. Re-writing integration-tests for werc20 (#2343)

* wip: fixing dynamic precompiles. Re-writing integration-tests for werc20

* run make format

* address some linter warnings

* remove unnecessary werc20 event constants

* remove duplicate import

* revert adding args to deposit and withdraw functions

* fix some missing imports

* WIP test refactors

* WIP more test refactors

* re-add wevmos precompile to static precompiles

* use base denom for wevmos token pair

* more WIP

* more WIP

* run make format

* remove unnecessary level of nesting

* run gofumpt

* fix tests

* remove unused utils and move test runner into integration test file

* remove mentions of deposit and withdraw events in tx.go

* add some todo comments

* remove unnecessary print statement

* remove unnecessary migration test flows that now live in the v17 upgrades folder

* remove unnecessary ordered instruction for integration tests

* only use two keys for the integration tests

* address linters

---------

Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>

* fix regression

* imp(evm): Check for dynamic extensions during EVM initialization (#2356)

check for active dynamic precompiles as well as static ones in HasCustomPrecompiles

* imp(werc20): Remove WERC-20 precompile and register WEVMOS as standard ERC-20 precompile (#2352)

* move WEVMOS contract to contracts directory

* remove werc20 precompile

* add utility to get token pair from grpc handler

* adjust integration tests and upgrade logic to account for WEVMOS being registered as an ERC-20 token pair and precompile

* run make format

* add changelog entry

* make addNewTokenPair public

* move RegisterEVMExtensions util to v17 migration logic

* remove unused methods

* run gofumpt

* Update app/upgrades/v17/migration.go

* address review comments

* remove duplicate params checks in tests

* update RegisterERC20Extensions upgrade handler

* update NewTokenPair function

* remove unnecessary param

* update mocks

* run make format

* delete unnecessary keepers from migration logic

* fix test

* run make format

* dont use new function to register aevmos token pair

* remove unused keepers in migration logic

* remove incorrect test

* fix test for p256

---------

Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: facs95 <facs95@users.noreply.github.com>
Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>

* add wevmos pair to local node

* tests(strv2): Add unit tests for dynamic precompiles (#2366)

* add unit tests

* run make format

* test expected panic

* run make format

* check errors

---------

Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>

* chore(strv2): Rename static precompiles (#2365)

* rename static precompiles

* rename upgrade

* read evmchannels from params

* fix old migration

* fix lint

* not break protobuf

* fix tests

---------

Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>

* remove unnecessary function

* remove unnecessary import

* make enable dynamic precompiles more efficient

* run make format

* fix old register proto

* address pr comments

---------

Co-authored-by: facs95 <facs95@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
* tests: add nix test setup

* fix: add more checks for balance after ibc transfer

* run make format

* fix AddEVMExtensions

* add new param

* full implementation

* load abi correctly

* update contract instance

* run make format

* rename function

* add mocks

* run make format

* make erc20keeper a pointer on app.go

* fix typo

* fix EnableDynamicPrecompiles

* improve error

* add comment to app.go

* fix: add another cosmos-hub-2

* run make format

* review comments

* remove data folders

* run make format

* refractor state_transition

* fix lint

* run make format

* update comments

* remove unused functions

* tests(nix): push tests for single and multi hop coins

* fix: add default token pair for WEVMOS

* fix: fix token pair asserts

* fix: merge

* fix: revert to linux binaries for Cosmos hub

* fix: add wait_for_ack

* fix: add WEVMOS transfer case

* fix: adjust checks for token pairs and active precompiles

* format and lint

* fix: add comments to WEVMOS

* fix: isort and wait_for_fn

* format and lint

---------

Co-authored-by: Vvaradinov <Vvaradinov@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: facs95 <facs95@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
* tests(nix): Add tokenfactory check and nix tests to confirm

* tests: add test case and jsonnnet.

* fix(tests): Fix denom check and add full nix test case

* CHANGELOG

* fix: remove unused imports

* fix: remove more imports

* fix: last unused imports

* fix: comments in function

* fix: isort python file

* fix: add wait_for_ack instead of time.sleep

* fix: add pre-existing WEVMOS check in the active_dynamic_precompiles

* fix: add cli instead of evmos to wait fn

* fix: add checks for token pair

---------

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
@github-actions github-actions bot added the CI label Feb 22, 2024
Vvaradinov and others added 6 commits February 22, 2024 15:22
* imp(evm): Add ApplyTransaction benchmark with new setup

* remove unnecesary comment

* remove unnecesary comment

* remove unnecesary comment

* rename denom

* add comments

* fix lint

* fix comments

---------

Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
@@ -15,6 +15,7 @@ import (

// RegisterCoin deploys an erc20 contract and creates the token pair for the
// existing cosmos coin
// TODO: FIX this will change into registering ERC20 metadata
Copy link
Contributor

Choose a reason for hiding this comment

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

@Vvaradinov FYI this is still TODO

MalteHerrmann and others added 11 commits February 27, 2024 09:56
…2411)

* fix: add event for successful ERC20 registration

* fix: add source channel to the event

* fix: fix tests

* fix: add tests

* remove fmt
# Conflicts:
#	CHANGELOG.md
#	app/upgrades/v17/upgrades.go
#	local_node.sh
#	x/erc20/handler.go
#	x/evm/types/interfaces.go
#	x/revenue/v1/keeper/evm_hooks.go
#	x/revenue/v1/keeper/integration_test.go
…anch' into Vvaradinov/feat-strv2-feature-branch
CHANGELOG.md Outdated
- (erc20) [#2292](https://github.com/evmos/evmos/pull/2292) Revert unnecessary logic on genesis (reverts #2217).
- (tests) [#2332](https://github.com/evmos/evmos/pull/2332) Create configuration in temporary directory in `Init` command test.
- (deps) [#2355](https://github.com/evmos/evmos/pull/2355) Bump Cosmos-SDK to v0.47.8-evmos.
- (revenue) [#2379](https://github.com/evmos/evmos/pull/2379) Remove `x/revenue` module.
- (evm) [#2380](https://github.com/evmos/evmos/pull/2380) Remove EVM hooks from app and EVM module.


Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change


// ERC20EventTransfer defines the transfer event for ERC20
ERC20EventTransfer = "Transfer"
AttributeCoinSourceChannel = "source_channel"
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
AttributeCoinSourceChannel = "source_channel"
AttributeKeySourceChannel = "source_channel"

ramacarlucho and others added 4 commits April 12, 2024 09:31
* first changes after audit

* run make format

* address comments and lint

* address comments

* address comments

---------

Co-authored-by: ramacarlucho <ramacarlucho@users.noreply.github.com>
…stantiation (#2430)

* fix str scalability issues

* refractor callback function

* fix go.mod

* remove comments

* go mod tidy

* rename function

* remove unnecessary space

* add comment

* Update x/evm/keeper/precompiles.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* Update x/evm/keeper/precompiles.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* run make format

* Update x/evm/keeper/static_precompiles.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* Update x/evm/keeper/static_precompiles.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* Update x/evm/keeper/dynamic_precompiles.go

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* remove print

* run make format

* Revert "remove print"

This reverts commit 197eaee.

* update geth

* remove unnecesary print

* fix lint

* return proper instantiation error

* return error when precompile is not found in memory

* run make format

---------

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: facs95 <facs95@users.noreply.github.com>
* commit WIP

* align errors and check invalid empty addresses

* don't deduct allowance from maxUint256 value

* run make format

* adjust comments

* remove unnecessary protolint

* update comments and use common.Address type for static and dynamic precompile addresses

* run make format

* check if receiver is module address rather than sender

* address protobuf linter warnings

* improve comments

* fix OnRecvPacket test logic in failure and no-op cases

* use IsPositive instead of IsZero and IsNegative

* fix OnRecvPacket unit tests

* check ERC-20 is enabled at head of Transfer method

* Update precompiles/erc20/integration_test.go

* apply suggestion from code review

* run make format

* fix

---------

Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
* imp(ante): Minor improvements to readibility (#2427)

* improve readibility and add safety measure

* remove unnecessary util

* add changelog entry

* chore(deps): update ca-certificates docker dep (#2424)

chore(deps): update docker dep

* build(deps-dev): bump follow-redirects from 1.15.4 to 1.15.6 in /tests/nix_tests/hardhat (#2419)

build(deps-dev): bump follow-redirects in /tests/nix_tests/hardhat

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.6.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.15.4...v1.15.6)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* build(deps): bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.0 (#2422)

* build(deps): bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.0

Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.16.0 to 2.17.0.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.16.0...v2.17.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* build(deps): bump github.com/docker/docker from 24.0.7+incompatible to 24.0.9+incompatible (#2426)

* chore: fix typos (#2431)

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump github.com/onsi/gomega from 1.31.1 to 1.32.0 (#2423)

* build(deps): bump github.com/onsi/gomega from 1.31.1 to 1.32.0

Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.31.1 to 1.32.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.31.1...v1.32.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* chore: remove repetitive words in proto file (#2439)

Signed-off-by: JohnEndson <jiayuzhen@outlook.com>

* chore: update legal email (#2449)

change legal mail

* chore(docs): updating safu policy (#2451)

* chore(docs): updating safu policy

* chore: changelog updated

* Update CHANGELOG.md

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* Update CHANGELOG.md

---------

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* build(deps): bump github.com/onsi/ginkgo/v2 from 2.17.0 to 2.17.1 (#2433)

* build(deps): bump github.com/onsi/ginkgo/v2 from 2.17.0 to 2.17.1

Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.0 to 2.17.1.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.17.0...v2.17.1)

---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* only use os mail address for inquiries (#2457)

* only use os mail address for inquiries

* add missing dot

* refactor(evm): using maps in std library (#2438)

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump golang from 1.22.1-alpine3.18 to 1.22.2-alpine3.18 (#2452)

Bumps golang from 1.22.1-alpine3.18 to 1.22.2-alpine3.18.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps-dev): bump undici from 5.28.3 to 5.28.4 in /tests/nix_tests/hardhat (#2456)

build(deps-dev): bump undici in /tests/nix_tests/hardhat

Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.28.3...v5.28.4)

---
updated-dependencies:
- dependency-name: undici
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>

* build(deps): bump undici from 5.28.3 to 5.28.4 in /tests/solidity (#2455)

Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.28.3...v5.28.4)

---
updated-dependencies:
- dependency-name: undici
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump crytic/slither-action from 0.3.1 to 0.3.2 (#2447)

Bumps [crytic/slither-action](https://github.com/crytic/slither-action) from 0.3.1 to 0.3.2.
- [Release notes](https://github.com/crytic/slither-action/releases)
- [Commits](crytic/slither-action@v0.3.1...v0.3.2)

---
updated-dependencies:
- dependency-name: crytic/slither-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#2453)

* build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.22.0 to 0.23.0.
- [Commits](golang/net@v0.22.0...v0.23.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>

* build(deps): bump bufbuild/buf-setup-action from 1.30.0 to 1.30.1 (#2450)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.30.0 to 1.30.1.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.30.0...v1.30.1)

---
updated-dependencies:
- dependency-name: bufbuild/buf-setup-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump golang.org/x/crypto from 0.21.0 to 0.22.0 (#2458)

* build(deps): bump golang.org/x/crypto from 0.21.0 to 0.22.0

Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.21.0 to 0.22.0.
- [Commits](golang/crypto@v0.21.0...v0.22.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* update gomod2nix.toml file

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: GAtom22 <GAtom22@users.noreply.github.com>

* chore: remove the repetitive not (#2446)

Signed-off-by: redistay <wujunjing@outlook.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* imp(make): Add protolint to make proto-lint command (#2444)

* add protolint to make proto-lint command

* add changelog entry

---------

Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* chore: update security polity (#2472)

* update SECURITY.md file

* add changelog entry

* fix typos

* markdown lint

* lint

* lint

* Update CHANGELOG.md

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

---------

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* chore(deps): update docker dep (#2474)

* fix(evm): Improve commit efficiency on EVM & bump IBC version to `v7.4.0`. (#2475)

* Merge pull request from GHSA-3fp5-2xwh-fxm6

* imp(evm): Improve statedb commit efficiency

* gomod2nix generate

---------

Co-authored-by: tom <tomasguerraalda@hotmail.com>

* update changelog (#2470)

* update changelog

* Update CHANGELOG.md

* gomod2nix generate

* go mod tidy

* go mod tidy

* udpate changelog

* add integration tests

* run make format

* address linters

---------

Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>

* build(deps): bump github.com/cosmos/ibc-go/v7 from 7.3.2 to 7.4.0 (#2462)

* build(deps): bump github.com/cosmos/ibc-go/v7 from 7.3.2 to 7.4.0

Bumps [github.com/cosmos/ibc-go/v7](https://github.com/cosmos/ibc-go) from 7.3.2 to 7.4.0.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v7.4.0/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v7.3.2...v7.4.0)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v7
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* update gomod2nix.toml file

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: GAtom22 <GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* build(deps): bump golang.org/x/net from 0.23.0 to 0.24.0 (#2471)

* build(deps): bump golang.org/x/net from 0.23.0 to 0.24.0

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.23.0 to 0.24.0.
- [Commits](golang/net@v0.23.0...v0.24.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* imp(evm): using maps.Clone api to simplify code (#2436)

imp(evm): using maps.Clone API to simplify code

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.0 (#2454)

* build(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.0

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.62.1 to 1.63.0.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.62.1...v1.63.0)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

* fix lint warnings

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* change Evmos SDK into evmOS (#2478)

* change Evmos SDK into evmOS

* update changelog

* fix(test): fix an incorrect description for ante unit test (#2437)

* fix(test): fix an incorrect unit test description for ante unit test

* Update CHANGELOG.md

---------

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* chore: make vesting optional (#2479)

make vesting optional

* imp(erc20): remove unused constant (#2442)

* imp(erc20): remove unused constant

* change log

---------

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>

* build(deps): bump express from 4.18.2 to 4.19.2 in /tests/solidity in the npm_and_yarn group across 1 directory (#2480)

build(deps): bump express

Bumps the npm_and_yarn group with 1 update in the /tests/solidity directory: [express](https://github.com/expressjs/express).


Updates `express` from 4.18.2 to 4.19.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* build(deps): bump google.golang.org/grpc from 1.63.0 to 1.63.2 (#2477)

* build(deps): bump google.golang.org/grpc from 1.63.0 to 1.63.2

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.63.0 to 1.63.2.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.63.0...v1.63.2)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* build(deps): bump express from 4.18.2 to 4.19.2 in /tests/solidity (#2440)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* imp(evm): remove unused error var (#2441)

* imp(evm): remove unused error var

* add change log

---------

Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* build(deps): bump github.com/linxGnu/grocksdb from 1.8.12 to 1.8.14 (#2429)

* build(deps): bump github.com/linxGnu/grocksdb from 1.8.12 to 1.8.14

Bumps [github.com/linxGnu/grocksdb](https://github.com/linxGnu/grocksdb) from 1.8.12 to 1.8.14.
- [Release notes](https://github.com/linxGnu/grocksdb/releases)
- [Commits](linxGnu/grocksdb@v1.8.12...v1.8.14)

---
updated-dependencies:
- dependency-name: github.com/linxGnu/grocksdb
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* update gomod2nix.toml file

* bump rockdb version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: GAtom22 <GAtom22@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* chore(build): bump go to 1.22 (#2484)

* bump go to 1.22

* update changelog

* update go version in nix setup

* replace path.Join with filepath.Join (#2481)

* replace path.Join with filepath.Join

Signed-off-by: xiaochangbai <704566072@qq.com>

* add changelog

Signed-off-by: imalasong <imalasong@qq.com>

---------

Signed-off-by: xiaochangbai <704566072@qq.com>
Signed-off-by: imalasong <imalasong@qq.com>

* build(deps): bump github.com/cometbft/cometbft-db from 0.11.0 to 0.12.0 (#2482)

* build(deps): bump github.com/cometbft/cometbft-db from 0.11.0 to 0.12.0

Bumps [github.com/cometbft/cometbft-db](https://github.com/cometbft/cometbft-db) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/cometbft/cometbft-db/releases)
- [Changelog](https://github.com/cometbft/cometbft-db/blob/main/CHANGELOG.md)
- [Commits](cometbft/cometbft-db@v0.11.0...v0.12.0)

---
updated-dependencies:
- dependency-name: github.com/cometbft/cometbft-db
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* update gomod2nix.toml file

* go mod tidy

* add setup-go in test-nix step

* update go version in nix setup to use v1.22.2

* remove unnecessary change

* fix style

* use go1.22 in consensus warn ci

* Revert "use go1.22 in consensus warn ci"

This reverts commit 4fe543e.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: GAtom22 <GAtom22@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>

* refactor(all): using slices in std library (#2469)

* refactor(all): using slices in std library

* mod tidy

---------

Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* fix(e2e-test): update docker go version (#2489)

* build(deps): bump github.com/onsi/gomega from 1.32.0 to 1.33.0 (#2495)

* build(deps): bump github.com/onsi/gomega from 1.32.0 to 1.33.0

Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.32.0 to 1.33.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.32.0...v1.33.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>

* fix changelog

* commit unnecesary test

* gomod2nix generate

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: JohnEndson <jiayuzhen@outlook.com>
Signed-off-by: redistay <wujunjing@outlook.com>
Signed-off-by: xiaochangbai <704566072@qq.com>
Signed-off-by: imalasong <imalasong@qq.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: Snoppy <michaleli@foxmail.com>
Co-authored-by: JohnEndson <165029498+JohnEndson@users.noreply.github.com>
Co-authored-by: Sandoche ADITTANE <sandoche@protonmail.com>
Co-authored-by: cui <523516579@qq.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Ramiro Carlucho <ramirocarlucho@gmail.com>
Co-authored-by: GAtom22 <GAtom22@users.noreply.github.com>
Co-authored-by: redistay <165581775+redistay@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: MalteHerrmann <MalteHerrmann@users.noreply.github.com>
Co-authored-by: Luke <luchenqun@qq.com>
Co-authored-by: Marko <markobaricevic3778@gmail.com>
Co-authored-by: imalasong <imalasong@qq.com>
Co-authored-by: 180909 <wjh180909@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants