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

build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts #1587

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 8, 2023

Bumps @openzeppelin/contracts from 4.8.3 to 4.9.1.

Release notes

Sourced from @​openzeppelin/contracts's releases.

v4.9.1

Note This release contains a fix for GHSA-5h3x-9wvq-w4m2.

  • Governor: Add a mechanism to restrict the address of the proposer using a suffix in the description.

v4.9.0

  • ReentrancyGuard: Add a _reentrancyGuardEntered function to expose the guard status. (#3714)
  • ERC721Wrapper: add a new extension of the ERC721 token which wraps an underlying token. Deposit and withdraw guarantee that the ownership of each token is backed by a corresponding underlying token with the same identifier. (#3863)
  • EnumerableMap: add a keys() function that returns an array containing all the keys. (#3920)
  • Governor: add a public cancel(uint256) function. (#3983)
  • Governor: Enable timestamp operation for blockchains without a stable block time. This is achieved by connecting a Governor's internal clock to match a voting token's EIP-6372 interface. (#3934)
  • Strings: add equal method. (#3774)
  • IERC5313: Add an interface for EIP-5313 that is now final. (#4013)
  • IERC4906: Add an interface for ERC-4906 that is now Final. (#4012)
  • StorageSlot: Add support for string and bytes. (#4008)
  • Votes, ERC20Votes, ERC721Votes: support timestamp checkpointing using EIP-6372. (#3934)
  • ERC4626: Add mitigation to the inflation attack through virtual shares and assets. (#3979)
  • Strings: add toString method for signed integers. (#3773)
  • ERC20Wrapper: Make the underlying variable private and add a public accessor. (#4029)
  • EIP712: add EIP-5267 support for better domain discovery. (#3969)
  • AccessControlDefaultAdminRules: Add an extension of AccessControl with additional security rules for the DEFAULT_ADMIN_ROLE. (#4009)
  • SignatureChecker: Add isValidERC1271SignatureNow for checking a signature directly against a smart contract using ERC-1271. (#3932)
  • SafeERC20: Add a forceApprove function to improve compatibility with tokens behaving like USDT. (#4067)
  • ERC1967Upgrade: removed contract-wide oz-upgrades-unsafe-allow delegatecall annotation, replaced by granular annotation in UUPSUpgradeable. (#3971)
  • ERC20Wrapper: self wrapping and deposit by the wrapper itself are now explicitly forbidden. (#4100)
  • ECDSA: optimize bytes32 computation by using assembly instead of abi.encodePacked. (#3853)
  • ERC721URIStorage: Emit ERC-4906 MetadataUpdate in _setTokenURI. (#4012)
  • ShortStrings: Added a library for handling short strings in a gas efficient way, with fallback to storage for longer strings. (#4023)
  • SignatureChecker: Allow return data length greater than 32 from EIP-1271 signers. (#4038)
  • UUPSUpgradeable: added granular oz-upgrades-unsafe-allow-reachable annotation to improve upgrade safety checks on latest version of the Upgrades Plugins (starting with @openzeppelin/upgrades-core@1.21.0). (#3971)
  • Initializable: optimize _disableInitializers by using != instead of <. (#3787)
  • Ownable2Step: make acceptOwnership public virtual to enable usecases that require overriding it. (#3960)
  • UUPSUpgradeable.sol: Change visibility to the functions upgradeTo and upgradeToAndCall from external to public. (#3959)
  • TimelockController: Add the CallSalt event to emit on operation schedule. (#4001)
  • Reformatted codebase with latest version of Prettier Solidity. (#3898)
  • Math: optimize log256 rounding check. (#3745)
  • ERC20Votes: optimize by using unchecked arithmetic. (#3748)
  • Multicall: annotate multicall function as upgrade safe to not raise a flag for its delegatecall. (#3961)
  • ERC20Pausable, ERC721Pausable, ERC1155Pausable: Add note regarding missing public pausing functionality (#4007)
  • ECDSA: Add a function toDataWithIntendedValidatorHash that encodes data with version 0x00 following EIP-191. (#4063)
  • MerkleProof: optimize by using unchecked arithmetic. (#3745)

Breaking changes

  • EIP712: Addition of ERC5267 support requires support for user defined value types, which was released in Solidity version 0.8.8. This requires a pragma change from ^0.8.0 to ^0.8.8.
  • EIP712: Optimization of the cache for the upgradeable version affects the way name and version are set. This is no longer done through an initializer, and is instead part of the implementation's constructor. As a consequence, all proxies using the same implementation will necessarily share the same name and version. Additionally, an implementation upgrade risks changing the EIP712 domain unless the same name and version are used when deploying the new implementation contract.

Deprecations

... (truncated)

Changelog

Sourced from @​openzeppelin/contracts's changelog.

4.9.1 (2023-06-07)

  • Governor: Add a mechanism to restrict the address of the proposer using a suffix in the description.

4.9.0 (2023-05-23)

  • ReentrancyGuard: Add a _reentrancyGuardEntered function to expose the guard status. (#3714)
  • ERC721Wrapper: add a new extension of the ERC721 token which wraps an underlying token. Deposit and withdraw guarantee that the ownership of each token is backed by a corresponding underlying token with the same identifier. (#3863)
  • EnumerableMap: add a keys() function that returns an array containing all the keys. (#3920)
  • Governor: add a public cancel(uint256) function. (#3983)
  • Governor: Enable timestamp operation for blockchains without a stable block time. This is achieved by connecting a Governor's internal clock to match a voting token's EIP-6372 interface. (#3934)
  • Strings: add equal method. (#3774)
  • IERC5313: Add an interface for EIP-5313 that is now final. (#4013)
  • IERC4906: Add an interface for ERC-4906 that is now Final. (#4012)
  • StorageSlot: Add support for string and bytes. (#4008)
  • Votes, ERC20Votes, ERC721Votes: support timestamp checkpointing using EIP-6372. (#3934)
  • ERC4626: Add mitigation to the inflation attack through virtual shares and assets. (#3979)
  • Strings: add toString method for signed integers. (#3773)
  • ERC20Wrapper: Make the underlying variable private and add a public accessor. (#4029)
  • EIP712: add EIP-5267 support for better domain discovery. (#3969)
  • AccessControlDefaultAdminRules: Add an extension of AccessControl with additional security rules for the DEFAULT_ADMIN_ROLE. (#4009)
  • SignatureChecker: Add isValidERC1271SignatureNow for checking a signature directly against a smart contract using ERC-1271. (#3932)
  • SafeERC20: Add a forceApprove function to improve compatibility with tokens behaving like USDT. (#4067)
  • ERC1967Upgrade: removed contract-wide oz-upgrades-unsafe-allow delegatecall annotation, replaced by granular annotation in UUPSUpgradeable. (#3971)
  • ERC20Wrapper: self wrapping and deposit by the wrapper itself are now explicitly forbidden. (#4100)
  • ECDSA: optimize bytes32 computation by using assembly instead of abi.encodePacked. (#3853)
  • ERC721URIStorage: Emit ERC-4906 MetadataUpdate in _setTokenURI. (#4012)
  • ShortStrings: Added a library for handling short strings in a gas efficient way, with fallback to storage for longer strings. (#4023)
  • SignatureChecker: Allow return data length greater than 32 from EIP-1271 signers. (#4038)
  • UUPSUpgradeable: added granular oz-upgrades-unsafe-allow-reachable annotation to improve upgrade safety checks on latest version of the Upgrades Plugins (starting with @openzeppelin/upgrades-core@1.21.0). (#3971)
  • Initializable: optimize _disableInitializers by using != instead of <. (#3787)
  • Ownable2Step: make acceptOwnership public virtual to enable usecases that require overriding it. (#3960)
  • UUPSUpgradeable.sol: Change visibility to the functions upgradeTo and upgradeToAndCall from external to public. (#3959)
  • TimelockController: Add the CallSalt event to emit on operation schedule. (#4001)
  • Reformatted codebase with latest version of Prettier Solidity. (#3898)
  • Math: optimize log256 rounding check. (#3745)
  • ERC20Votes: optimize by using unchecked arithmetic. (#3748)
  • Multicall: annotate multicall function as upgrade safe to not raise a flag for its delegatecall. (#3961)
  • ERC20Pausable, ERC721Pausable, ERC1155Pausable: Add note regarding missing public pausing functionality (#4007)
  • ECDSA: Add a function toDataWithIntendedValidatorHash that encodes data with version 0x00 following EIP-191. (#4063)
  • MerkleProof: optimize by using unchecked arithmetic. (#3745)

Breaking changes

  • EIP712: Addition of ERC5267 support requires support for user defined value types, which was released in Solidity version 0.8.8. This requires a pragma change from ^0.8.0 to ^0.8.8.
  • EIP712: Optimization of the cache for the upgradeable version affects the way name and version are set. This is no longer done through an initializer, and is instead part of the implementation's constructor. As a consequence, all proxies using the same implementation will necessarily share the same name and version. Additionally, an implementation upgrade risks changing the EIP712 domain unless the same name and version are used when deploying the new implementation contract.

Deprecations

  • ERC20Permit: Added the file IERC20Permit.sol and ERC20Permit.sol and deprecated draft-IERC20Permit.sol and draft-ERC20Permit.sol since EIP-2612 is no longer a Draft. Developers are encouraged to update their imports. (#3793)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner June 8, 2023 18:35
@dependabot dependabot bot requested review from facs95 and GAtom22 and removed request for a team June 8, 2023 18:35
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 8, 2023
@Vvaradinov Vvaradinov merged commit b181c0d into main Jun 9, 2023
17 checks passed
@Vvaradinov Vvaradinov deleted the dependabot/npm_and_yarn/contracts/openzeppelin/contracts-4.9.1 branch June 9, 2023 08:23
facs95 added a commit that referenced this pull request Jun 13, 2023
* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* fix: go.sum

* CHANGELOG

* CHANGELOG

* CHANGELOG

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
facs95 added a commit that referenced this pull request Jun 16, 2023
* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* update changelog

* fix changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
fedekunze added a commit that referenced this pull request Jul 3, 2023
* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* Update Dockerfile (#1606)

* Update Dockerfile

* pin ca-certificates version

---------

Co-authored-by: DevOps <devops@nowhere.com>

* feat(revenue): route gas fees paid from calling precompiles to community pool (#1607)

* feat(revenue): route gas fees paid from calling precompiles to community pool

* lint and format

* fix: added problematic test case

* fix: cleanup check

* fix: added account keeper and problematic test case

* fix tests

* fix tests

* fix: lint

* refactor post processing hooks

* refractor hooks

* avoid performing unnesary logic

* fix lint

---------

Co-authored-by: Freddy Caceres <facs95@gmail.com>

* build(deps): bump @openzeppelin/contracts from 4.9.1 to 4.9.2 in /contracts (#1608)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.9.1 to 4.9.2.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.9.1...v4.9.2)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* build(deps): bump bufbuild/buf-setup-action from 1.21.0 to 1.22.0 (#1614)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.21.0 to 1.22.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.21.0...v1.22.0)

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

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

* update Makefile (#1618)

* add snapshot cmds (#1619)

Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>

* tests: add timeout packet case for registered erc20 (#1615)

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

* chore(server): adjust default app configuration to disable all server options (#1623)

adjust default app configuration to disable all server options

* imp(ci): add license checker (#1624)

* add license checker script

* add make command

* add GitHub workflow

* adjust printed string

* only run GH action on relevant changes

* address linter comments

* address more linter comments

* build(deps): bump bufbuild/buf-setup-action from 1.22.0 to 1.23.0 (#1622)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.22.0...v1.23.0)

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

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

* chore(changelog): add missing changelog entries (#1628)

add missing changelog entries

* fix(app): dereference the pointer for the app config (#1626)

dereference the pointer for the app config

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

* chore(proto): add licenses to proto files (#1627)

* add proto files to license checker LGPL3 files

* add license comments to proto files

* chore: update changelog with v12.1.5 (#1630)

update changelog with v12.1.5

* chore: move precompiles to repo (#1625)

* move precompiles to repo

* add changelog entry

* add lic

* fix chlog

* add licenses

* fix test

* enable json-rpc on local_node.sh

* enable json-rpc on tests scripts

* enable json-rpc on init-node script

* enable api on init-node script

* revert changes in script

* enable buildKit on build-docker cmd

* fix: added missing default value for query unbondingDelegation

---------

Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* fix changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
Co-authored-by: devops-evmos <133777505+devops-evmos@users.noreply.github.com>
Co-authored-by: DevOps <devops@nowhere.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>
MalteHerrmann added a commit that referenced this pull request Jul 5, 2023
* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* Update Dockerfile (#1606)

* Update Dockerfile

* pin ca-certificates version

---------

Co-authored-by: DevOps <devops@nowhere.com>

* feat(revenue): route gas fees paid from calling precompiles to community pool (#1607)

* feat(revenue): route gas fees paid from calling precompiles to community pool

* lint and format

* fix: added problematic test case

* fix: cleanup check

* fix: added account keeper and problematic test case

* fix tests

* fix tests

* fix: lint

* refactor post processing hooks

* refractor hooks

* avoid performing unnesary logic

* fix lint

---------

Co-authored-by: Freddy Caceres <facs95@gmail.com>

* build(deps): bump @openzeppelin/contracts from 4.9.1 to 4.9.2 in /contracts (#1608)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.9.1 to 4.9.2.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v4.9.1...v4.9.2)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* build(deps): bump bufbuild/buf-setup-action from 1.21.0 to 1.22.0 (#1614)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.21.0 to 1.22.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.21.0...v1.22.0)

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

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

* update Makefile (#1618)

* add snapshot cmds (#1619)

Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>

* tests: add timeout packet case for registered erc20 (#1615)

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

* chore(server): adjust default app configuration to disable all server options (#1623)

adjust default app configuration to disable all server options

* imp(ci): add license checker (#1624)

* add license checker script

* add make command

* add GitHub workflow

* adjust printed string

* only run GH action on relevant changes

* address linter comments

* address more linter comments

* build(deps): bump bufbuild/buf-setup-action from 1.22.0 to 1.23.0 (#1622)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.22.0...v1.23.0)

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

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

* chore(changelog): add missing changelog entries (#1628)

add missing changelog entries

* fix(app): dereference the pointer for the app config (#1626)

dereference the pointer for the app config

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

* chore(proto): add licenses to proto files (#1627)

* add proto files to license checker LGPL3 files

* add license comments to proto files

* chore: update changelog with v12.1.5 (#1630)

update changelog with v12.1.5

* chore: move precompiles to repo (#1625)

* move precompiles to repo

* add changelog entry

* add lic

* fix chlog

* add licenses

* fix test

* enable json-rpc on local_node.sh

* enable json-rpc on tests scripts

* enable json-rpc on init-node script

* enable api on init-node script

* revert changes in script

* enable buildKit on build-docker cmd

* fix: added missing default value for query unbondingDelegation

---------

Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* Update CODEOWNERS (#1633)

* build(deps): bump bufbuild/buf-setup-action from 1.23.0 to 1.23.1 (#1631)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.23.0...v1.23.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: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* Problem: cometbft dependency is not updated (#1635)

* Problem: cometbft dependency is not updated

* Update CHANGELOG.md

* fix(test): add version map and home flag for upgrade (#1636)

* add version map for init test upgrade

for available tags, see https://hub.docker.com/r/tharsishq/evmos/tags

* set missing home

* use root user

* chore(ci): point proto push action to subfolder (#1642)

point proto push action to subfolder

* adjust upgrade constants

* update changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
Co-authored-by: devops-evmos <133777505+devops-evmos@users.noreply.github.com>
Co-authored-by: DevOps <devops@nowhere.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>
Co-authored-by: mmsqe <mavis@crypto.com>
MalteHerrmann added a commit that referenced this pull request Jul 12, 2023
* Release v13.0.0-rc1 (#1542)

* CHANGELOG

* fix: remove unreleased

* fix: fix md files

* fix: markdown

* fix: md lint

* fix: linters

* chore: add precompile params init (main) (#1543)

chore: add precompile params init

* chore: update branch with main (#1545)

chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* chore: add ics20 precompiled (backport #1578) (#1593)

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
(cherry picked from commit 1a3b3f3bb118715a1643fadf2dd80988ed5b8160)

# Conflicts:
#	go.mod
#	go.sum

* Update go.mod

* Update go.sum

* fix: go.mod and go.sum

---------

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

* chore: backport main to v13.0.x (#1599)

* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* fix: go.sum

* CHANGELOG

* CHANGELOG

* CHANGELOG

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>

* fix(upgrade): update release candidate name and binaries (#1600)

fix: update release candidate name and binaries

* Release v13.0.0-rc3 (#1603)

* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* update changelog

* fix changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>

* Set upgrade constants for v13.0.0-rc3 release (#1604)

Update upgrades constants

* chore: merge main to v13 release branch (#1632)

* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* Update Dockerfile (#1606)

* Update Dockerfile

* pin ca-certificates version

---------

Co-authored-by: DevOps <devops@nowhere.com>

* feat(revenue): route gas fees paid from calling precompiles to community pool (#1607)

* feat(revenue): route gas fees paid from calling precompiles to community pool

* lint and format

* fix: added problematic test case

* fix: cleanup check

* fix: added account keeper and problematic test case

* fix tests

* fix tests

* fix: lint

* refactor post processing hooks

* refractor hooks

* avoid performing unnesary logic

* fix lint

---------

Co-authored-by: Freddy Caceres <facs95@gmail.com>

* build(deps): bump @openzeppelin/contracts from 4.9.1 to 4.9.2 in /contracts (#1608)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.9.1 to 4.9.2.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.9.1...v4.9.2)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* build(deps): bump bufbuild/buf-setup-action from 1.21.0 to 1.22.0 (#1614)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.21.0 to 1.22.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.21.0...v1.22.0)

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

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

* update Makefile (#1618)

* add snapshot cmds (#1619)

Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>

* tests: add timeout packet case for registered erc20 (#1615)

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

* chore(server): adjust default app configuration to disable all server options (#1623)

adjust default app configuration to disable all server options

* imp(ci): add license checker (#1624)

* add license checker script

* add make command

* add GitHub workflow

* adjust printed string

* only run GH action on relevant changes

* address linter comments

* address more linter comments

* build(deps): bump bufbuild/buf-setup-action from 1.22.0 to 1.23.0 (#1622)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.22.0...v1.23.0)

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

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

* chore(changelog): add missing changelog entries (#1628)

add missing changelog entries

* fix(app): dereference the pointer for the app config (#1626)

dereference the pointer for the app config

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

* chore(proto): add licenses to proto files (#1627)

* add proto files to license checker LGPL3 files

* add license comments to proto files

* chore: update changelog with v12.1.5 (#1630)

update changelog with v12.1.5

* chore: move precompiles to repo (#1625)

* move precompiles to repo

* add changelog entry

* add lic

* fix chlog

* add licenses

* fix test

* enable json-rpc on local_node.sh

* enable json-rpc on tests scripts

* enable json-rpc on init-node script

* enable api on init-node script

* revert changes in script

* enable buildKit on build-docker cmd

* fix: added missing default value for query unbondingDelegation

---------

Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* fix changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
Co-authored-by: devops-evmos <133777505+devops-evmos@users.noreply.github.com>
Co-authored-by: DevOps <devops@nowhere.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>

* chore(release): prepare v13.0.0 (#1634)

* update changelog for v13.0.0

* adjust upgrade constants

* Problem: cometbft dependency is not updated (backport #1635) (#1639)

* Problem: cometbft dependency is not updated (#1635)

* Problem: cometbft dependency is not updated

* Update CHANGELOG.md

(cherry picked from commit 3dc45119f7c0ba5b6f0981697ef32113f1637a8b)

# Conflicts:
#	CHANGELOG.md

* fix merge conflicts

---------

Co-authored-by: mmsqe <mavis@crypto.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>

* chore(release): update changelog for v13.0.1 (#1640)

update changelog

* chore(changelog): remove unnecessary dash (#1641)

remove unnecessary dash

* chore(upgrade): prepare v13.0.2 (#1644)

* chore: add precompile params init (to `main`) (#1544)

chore: add precompile params init

* fix (ci): fix bsr push action (#1547)

fix bsr push action

* fix: remove linux/836 from docker image CI  (#1546)

* fix docker build

* fix lint issues

* add changelog entry

* fix md lint issues

---------

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

* build(deps): bump golang from 1.20.3-bullseye to 1.20.4-bullseye (#1550)

Bumps golang from 1.20.3-bullseye to 1.20.4-bullseye.

---
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>

* docs(readme): improve structure (#1552)

* build(deps): bump bufbuild/buf-setup-action from 1.17.0 to 1.18.0 (#1559)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.17.0 to 1.18.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.17.0...v1.18.0)

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

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

* chore: run make proto-all  (#1551)

Run make proto-all to regenerate .pb.go files

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

* chore(evm): fix typo in EVM utils comment (#1560)

* fix typo

* some more typos

---------

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

* build(deps): bump bufbuild/buf-setup-action from 1.18.0 to 1.19.0 (#1565)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.18.0 to 1.19.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.18.0...v1.19.0)

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

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

* deps: bump sdk version to v0.46.11-alpha.ledger.7 (#1567)

* deps: bump sdk version

* add changelog entry

* imp(tests) add commit function to keep ctx settings for tests (#1517)

* add commit function to keep ctx settings for tests

* fix lint issues

* reset gas meter

* rename func

* update based on review comments

---------

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

* feat(client): add subcommand debug legacy-eip712 (#1556)

* feat(client): add subcommand debug legacy-eip712

Signed-off-by: Shane <im.xianying@gmail.com>

* refactor(client): use wrap instead of wrapf

* chore(client): add comment

---------

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

* chore: update changelog w/ v12.1.3 (#1570)

* deps: bump ibc-go version (#1571)

* chore: update changelog with v12.1.4 (#1576)

update changelog with v12.1.4

* chore(deps): bump ibc-go version to v6.2.0 (#1581)

* build(deps): bump golang from 1.20.4-bullseye to 1.20.5-bullseye (#1584)

Bumps golang from 1.20.4-bullseye to 1.20.5-bullseye.

---
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>

* build(deps): bump bufbuild/buf-setup-action from 1.19.0 to 1.21.0 (#1583)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.19.0 to 1.21.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.19.0...v1.21.0)

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

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

* build(deps): bump @openzeppelin/contracts from 4.8.3 to 4.9.1 in /contracts (#1587)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.8.3 to 4.9.1.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.1/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.8.3...v4.9.1)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

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

* [Snyk] Security upgrade @openzeppelin/contracts from 4.8.3 to 4.9.1 (#1588)

fix: contracts/package.json & contracts/package-lock.json to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-OPENZEPPELINCONTRACTS-5672116

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

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (#1582)

* build(deps): bump golangci/golangci-lint-action from 3.4.0 to 3.5.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* remove depguard linter

* address nakedret linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MalteHerrmann <malte@evmos.org>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>

* chore: add ics20 precompile (#1578)

* chore: add ics20 precompile

* update dependencies

* go mod tidy

* Update x/evm/keeper/precompiles.go

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

* fix: update go.mod and params comments

* CHANGELOG

---------

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

* Update Makefile. enable CGO (#1590)

Update Makefile

* Update cometbft & goleveldb (#1595)

* update cometbft & goleveldb

* fix: run go mod tidy

---------

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

* fix: add MsgCreateClawbackVestingAccount period validation (#1596)

* fix: add MsgCreateClawbackVestingAccount period validation

* add correct err message

---------

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

* fix: update geth fork (#1597)

* fix: update geth fork

* CHANGELOG

* build(deps): bump golangci/golangci-lint-action from 3.5.0 to 3.6.0 (#1591)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.5.0 to 3.6.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* Upstream changelog changes from v13.0.0-rc2 (#1601)

* upstream changelog changes

* remove unnecessary log

* fix: Fixed the BaseDenom and wrong comparison for MaxUint256 (#1602)

* update precompiles version

* fix: bump precompiles repo

* fix linter

* Update Dockerfile (#1606)

* Update Dockerfile

* pin ca-certificates version

---------

Co-authored-by: DevOps <devops@nowhere.com>

* feat(revenue): route gas fees paid from calling precompiles to community pool (#1607)

* feat(revenue): route gas fees paid from calling precompiles to community pool

* lint and format

* fix: added problematic test case

* fix: cleanup check

* fix: added account keeper and problematic test case

* fix tests

* fix tests

* fix: lint

* refactor post processing hooks

* refractor hooks

* avoid performing unnesary logic

* fix lint

---------

Co-authored-by: Freddy Caceres <facs95@gmail.com>

* build(deps): bump @openzeppelin/contracts from 4.9.1 to 4.9.2 in /contracts (#1608)

build(deps): bump @openzeppelin/contracts in /contracts

Bumps [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) from 4.9.1 to 4.9.2.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/CHANGELOG.md)
- [Commits](https://github.com/OpenZeppelin/openzeppelin-contracts/compare/v4.9.1...v4.9.2)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* build(deps): bump bufbuild/buf-setup-action from 1.21.0 to 1.22.0 (#1614)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.21.0 to 1.22.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.21.0...v1.22.0)

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

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

* update Makefile (#1618)

* add snapshot cmds (#1619)

Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>

* tests: add timeout packet case for registered erc20 (#1615)

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

* chore(server): adjust default app configuration to disable all server options (#1623)

adjust default app configuration to disable all server options

* imp(ci): add license checker (#1624)

* add license checker script

* add make command

* add GitHub workflow

* adjust printed string

* only run GH action on relevant changes

* address linter comments

* address more linter comments

* build(deps): bump bufbuild/buf-setup-action from 1.22.0 to 1.23.0 (#1622)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.22.0...v1.23.0)

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

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

* chore(changelog): add missing changelog entries (#1628)

add missing changelog entries

* fix(app): dereference the pointer for the app config (#1626)

dereference the pointer for the app config

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

* chore(proto): add licenses to proto files (#1627)

* add proto files to license checker LGPL3 files

* add license comments to proto files

* chore: update changelog with v12.1.5 (#1630)

update changelog with v12.1.5

* chore: move precompiles to repo (#1625)

* move precompiles to repo

* add changelog entry

* add lic

* fix chlog

* add licenses

* fix test

* enable json-rpc on local_node.sh

* enable json-rpc on tests scripts

* enable json-rpc on init-node script

* enable api on init-node script

* revert changes in script

* enable buildKit on build-docker cmd

* fix: added missing default value for query unbondingDelegation

---------

Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>

* Update CODEOWNERS (#1633)

* build(deps): bump bufbuild/buf-setup-action from 1.23.0 to 1.23.1 (#1631)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.23.0...v1.23.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: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>

* Problem: cometbft dependency is not updated (#1635)

* Problem: cometbft dependency is not updated

* Update CHANGELOG.md

* fix(test): add version map and home flag for upgrade (#1636)

* add version map for init test upgrade

for available tags, see https://hub.docker.com/r/tharsishq/evmos/tags

* set missing home

* use root user

* chore(ci): point proto push action to subfolder (#1642)

point proto push action to subfolder

* adjust upgrade constants

* update changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
Co-authored-by: devops-evmos <133777505+devops-evmos@users.noreply.github.com>
Co-authored-by: DevOps <devops@nowhere.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>
Co-authored-by: mmsqe <mavis@crypto.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Shane <im.xianying@gmail.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com>
Co-authored-by: Austin Chandra <austinchandra@berkeley.edu>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Shane <im.xianying@gmail.com>
Co-authored-by: Snyk bot <github+bot@snyk.io>
Co-authored-by: Vingurzhou <zwz0123460218@icloud.com>
Co-authored-by: devops-evmos <133777505+devops-evmos@users.noreply.github.com>
Co-authored-by: DevOps <devops@nowhere.com>
Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Marko Baricevic <markobaricevic3778@gmail.com>
Co-authored-by: mmsqe <mavis@crypto.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants