dependabot[bot]
6fc9b69f17
build(deps): bump alpine from 3.17.0 to 3.17.1 ( #1595 )
...
Bumps alpine from 3.17.0 to 3.17.1.
---
updated-dependencies:
- dependency-name: alpine
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-11 17:47:50 +02:00
dependabot[bot]
51ca37f81b
build(deps): bump github.com/onsi/ginkgo/v2 from 2.6.1 to 2.7.0 ( #1596 )
...
* build(deps): bump github.com/onsi/ginkgo/v2 from 2.6.1 to 2.7.0
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo ) from 2.6.1 to 2.7.0.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v2.6.1...v2.7.0 )
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* adjust test-rpc action timeout to 30 minutes
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: Vladislav Varadinov <vladislav.varadinov@gmail.com>
2023-01-11 17:44:17 +02:00
Vladislav Varadinov
20c82d0f85
fix: revert changes from TypedEvents ( #1600 )
...
* fix: revert changes from TypedEvents
* fix: formatter and linter
* fix: double quote to prevent globbing and word splitting
* fix: added token to codecov
* fix: re-added events.proto for usage later
2023-01-11 17:11:21 +02:00
dependabot[bot]
9003b6fad2
build(deps): bump google.golang.org/grpc from 1.51.0 to 1.52.0 ( #1599 )
...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go ) from 1.51.0 to 1.52.0.
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.51.0...v1.52.0 )
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-11 15:38:39 +01:00
Vladislav Varadinov
57ed355c98
chore(feemarket) - Depreacte usage of x/params in x/feemarket ( #1509 )
...
* (refactor): Added new MsgUpdateParams tx and generated new proto files
* (refactor): Refactor for migration of x/params
* (fix): Refactor to use single Params store key for easier more readable code
* (fix): removed unused
* (fix): add validation
* (fix): fix linter
* remove line
* Added changes from code review
* Apply changes from code review
* (fix): Made ParamKey back to a string
* Added CHANGELOG entry
* Apply suggestions from code review
Co-authored-by: Tomas Guerra <54514587+GAtom22@users.noreply.github.com>
* (fix): remove HTTP endpoint exposure
* Apply suggestions from code review
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
* fix: Apply changes from code review and run linter
* Update x/feemarket/keeper/params.go
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
* Update x/feemarket/types/msg.go
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
* tests: added tests for msg_server and msg
* tests: add failing test for migration
* Update x/feemarket/keeper/params.go
Co-authored-by: Tomas Guerra <54514587+GAtom22@users.noreply.github.com>
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2023-01-05 17:59:46 +01:00
Vladislav Varadinov
8886ce3dfd
chore(evm, feemarket) - Migrate Event emitting to TypedEvent ( #1544 )
...
* (refactor): Migrated to new Typed Events
* (fix): fixed tests and initialized the logs array in the proto message
* Added CHANGELOG entry
* (refactor): Made migration to Typedevent to feemarket module
* (fix): replace error returning with error logging.
* fix: linter and formatter
* fix: handle error by logging it
* fix: ran formatter and linter
* Apply suggestions from code review
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
* fix: increase sleep time to 5s initially
* fix: comment out failing tests to investigate in a separate PR
* fix: update timeout to 10 minutes
* fix: added 15 min timeout
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2023-01-05 17:24:18 +01:00
MalteHerrmann
5f0acd8c6f
chore: run gofumpt for non-generated files & fix tools/tools.go ( #1590 )
...
* fix comment in tools/tools.go
* run gofumpt for all non-generated files
2023-01-05 17:22:18 +01:00
Vladislav Varadinov
0f7bdceaa0
chore(evm): Deprecate x/params usage in x/evm ( #1472 )
...
* imp(evm): Migrate from old Cosmos SDK params module to new way of keeping params in module Keeper
* Updated changelog
* Apply changes from code review
* (impv): Added Shanghai and Cancun blocks to current types and latest migration
* (tests): Update unit tests to include Shanghai and Cancun blocks
* (fix) - ran golangci-lint on the entire project
* (fix) - remove deprecated params method
* (impv): added marshaling of booleans per individual param key
* (impv): added individual param getting and setting
* (impv): replaced getters with individual param
* (impv): added amino codec for MsgEthereumTx
* Added changes suggested in code review
* (fix): updated the migration files for v4
* (fix): fixed unit tests panic for incorrect interface
* (fix): updated module msg handler
* (fix): rename to original params getter method
* (refactor): registered implementation for the new msg
* (refactor): added correct amino codec for MsgUpdateParams and removed for MsgEthTx
* Applied changes from code review
* (fix): removed unnecessary duplicate
* (fix): removed params_legacy from the types and moved logic to migration
* (fix): Added v4 mocks to the migrations_test
* (fix): undo all the non related work regarding the Cancun and Shanghai blocks
* (fix): reverted linting the entire project - will make a separate PR for it
* Applied changes from review
* Applied changes from code review
* (fix): removed comments
* (fix): Ran formatter and fixed linting issues on unsed functions
* (fix): Linting issues resolved
* (fix): refactor migrations and added default EIPs
* (fix): Combined into one call
* (fix): Added more straightforward way to handle migration
* (fix): corrected migration test
* Applied changes from code review
* (fix): Linter fix
* (fix): Linter
* (fix): Lint proto files
* Apply suggestions from code review
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
* (fix): Added new block to migration
* (fix): Added additional comments and formatted proto files
* (fix): Added name to unit test cases
* (fix): removed unused import
* Apply changes from code review
* (fix): typo
* (fix): remove HTTP endpoint exposure
* Apply suggestions from code review
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
* applied changes from code review
* fix: extra line added in merge removed
* fix: applied changes from code review
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2023-01-04 16:28:45 +02:00
MalteHerrmann
e4ac0c9b42
impr (ci): add python and javascript to codeql analysis ( #1560 )
...
* add python and javascript to codeql analysis
* address linter comments
2023-01-04 12:17:09 +01:00
dependabot[bot]
796d9f56e3
build(deps): bump json-pointer from 0.6.1 to 0.6.2 in /tests/solidity ( #1584 )
...
Bumps [json-pointer](https://github.com/manuelstofer/json-pointer ) from 0.6.1 to 0.6.2.
- [Release notes](https://github.com/manuelstofer/json-pointer/releases )
- [Commits](https://github.com/manuelstofer/json-pointer/commits )
---
updated-dependencies:
- dependency-name: json-pointer
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-04 04:38:50 -05:00
dependabot[bot]
54000bfce2
build(deps): bump github.com/rs/cors from 1.8.2 to 1.8.3 ( #1576 )
...
Bumps [github.com/rs/cors](https://github.com/rs/cors ) from 1.8.2 to 1.8.3.
- [Release notes](https://github.com/rs/cors/releases )
- [Commits](https://github.com/rs/cors/compare/v1.8.2...v1.8.3 )
---
updated-dependencies:
- dependency-name: github.com/rs/cors
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: 4rgon4ut <59182467+4rgon4ut@users.noreply.github.com>
2023-01-03 20:40:50 +04:00
Federico Kunze Küllmer
286f919709
chore(evm): cleanup EVM files ( #1582 )
...
* chore(evm): cleanup EVM files
* move EVMConfig
2022-12-30 13:20:14 +01:00
sontrinh16
17343e66f0
deps: bump IBC v6 ( #1575 )
...
* bump ibc v6
* remove ics23 replace statement
* mod2nix
* changelog
* proto-gen
Co-authored-by: Son Trinh <sontrinh@Sons-MacBook-Pro.local>
Co-authored-by: Jacob Gadikian <jacobgadikian@gmail.com>
2022-12-30 09:31:07 +01:00
mmsqe
7b4c1d9ae6
fix(tests): avoid error when run benchmark ( #1573 )
...
* avoid error when run benchmark
* fix rest benchmark test
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-27 17:59:33 +00:00
Freddy Caceres
edddd9eac6
Enable metrics on init.sh script ( #1574 )
2022-12-26 23:46:57 +01:00
dependabot[bot]
b80f5a7acb
build(deps): bump bufbuild/buf-setup-action from 1.10.0 to 1.11.0 ( #1572 )
...
Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action ) from 1.10.0 to 1.11.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases )
- [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.10.0...v1.11.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>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-23 14:53:54 +00:00
mmsqe
29caa1916d
tests: make integration test more stable ( #1488 )
...
* wait new blk right before send tx
* larger timeout_commit for priority test
* larger timeout_commit for mempool related test
* mv chain id test to cluster used test
* keep cluster in module scope
* sync gomod2nix
* adjust timeout_commit
* rm prune all in indexer config
* add missing min_gas_multiplier
* wait 1 more blk in upgrade
* only keep 2 validators
* add retry for grpc_eth_call
* wait 1 block before stop
* fix lint
* disable recheck
* bump up upgrade
* sync gomod2nix
* Apply suggestions from code review
* Apply suggestions from code review
* append node log
* fix lint
* expect less gas after ecd76396eb
* allow retry continue on empty rsp
* update gomod2nix
* fix flake
* mod tidy
* keep grpc only test
* tests(integration): enable recheck tx mode
* update gomod2nix
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: Tom <tomasguerraalda@hotmail.com>
2022-12-23 07:58:26 -05:00
dependabot[bot]
1dfee9f283
build(deps): bump actions/stale from 6 to 7 ( #1565 )
...
Bumps [actions/stale](https://github.com/actions/stale ) from 6 to 7.
- [Release notes](https://github.com/actions/stale/releases )
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/stale/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/stale
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-22 15:38:58 +00:00
Tomas Guerra
d3a60a02ea
test(ante): add test case for gasWanted
on ReCheckTx mode ( #1570 )
...
* fix(abci): fix reCheckTx gas wanted'
* fix(ante): add changelog entry
* fix(ante): add test case
2022-12-22 16:07:50 +01:00
MalteHerrmann
ea677fcec7
fix (docs): replace evmos.dev links with docs.evmos.org links ( #1568 )
...
* replace evmos.dev links with docs.evmos.org links
* update open positions link
* Update README.md
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-22 11:14:45 +01:00
Austin Chandra
fc21e4ddd9
fix(cli): fix Ledger signature algorithm verification ( #1550 )
...
* fix: update Ledger default algorithm to `EthSecp256k1`
* fix ledger signing algo validation
* changelog
Co-authored-by: Freddy Caceres <facs95@gmail.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-22 09:11:19 +00:00
0xfoobar
1cc868fc7b
fix(docs): broken link in README ( #1567 )
...
* Fix broken link in README
* Update README.md
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-22 08:48:43 +00:00
Tomas Guerra
bd0319760d
fix(ante): fix reCheckTx gas wanted ( #1566 )
...
* fix(abci): fix reCheckTx gas wanted'
* fix(ante): add changelog entry
2022-12-22 08:07:52 +00:00
yihuang
0e366db2e2
Problem: personal_newAccount don't work ( #1561 )
...
fix the internal parameter.
2022-12-21 19:55:49 -05:00
Tomas Guerra
aeea656868
debug(app): add flag to disable optimized build for remote debugging ( #1549 )
...
Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com>
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-21 13:19:05 +00:00
MalteHerrmann
78e6df2ed2
make missing key error message during SendTransaction more verbose ( #1563 )
...
Co-authored-by: 4rgon4ut <59182467+4rgon4ut@users.noreply.github.com>
2022-12-20 21:58:30 +00:00
dependabot[bot]
9663ec3258
build(deps): bump github.com/cosmos/ibc-go/v5 from 5.1.0 to 5.2.0 ( #1564 )
...
Bumps [github.com/cosmos/ibc-go/v5](https://github.com/cosmos/ibc-go ) from 5.1.0 to 5.2.0.
- [Release notes](https://github.com/cosmos/ibc-go/releases )
- [Changelog](https://github.com/cosmos/ibc-go/blob/v5.2.0/CHANGELOG.md )
- [Commits](https://github.com/cosmos/ibc-go/compare/v5.1.0...v5.2.0 )
---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v5
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-20 15:23:42 +01:00
Federico Kunze Küllmer
111042da2e
chore(all): add license to go files ( #1558 )
...
* chore(all): add license to go files
* rm comments from geth files
* fixes
2022-12-16 11:48:38 +02:00
Tyler
bc8e3e6eb0
fix: use actual result when unmarshaling value ( #1555 )
2022-12-16 08:08:56 +00:00
dependabot[bot]
dda1267f6d
build(deps): bump github.com/cosmos/cosmos-sdk from 0.46.6 to 0.46.7 ( #1551 )
...
Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk ) from 0.46.6 to 0.46.7.
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases )
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md )
- [Commits](https://github.com/cosmos/cosmos-sdk/compare/v0.46.6...v0.46.7 )
---
updated-dependencies:
- dependency-name: github.com/cosmos/cosmos-sdk
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-15 12:09:53 +01:00
dependabot[bot]
66ef65f388
build(deps): bump github.com/onsi/gomega from 1.24.1 to 1.24.2 ( #1553 )
...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega ) from 1.24.1 to 1.24.2.
- [Release notes](https://github.com/onsi/gomega/releases )
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/gomega/compare/v1.24.1...v1.24.2 )
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-15 11:59:27 +01:00
dependabot[bot]
f1583d5bf7
build(deps): bump bufbuild/buf-setup-action from 1.9.0 to 1.10.0 ( #1548 )
2022-12-14 20:28:37 -05:00
dependabot[bot]
82309ab1ae
build(deps): bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0 ( #1547 )
...
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo ) from 2.5.1 to 2.6.0.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v2.5.1...v2.6.0 )
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-12 10:27:59 -05:00
Austin Chandra
3b2f9fcf6c
fix: improve error handling for EIP-712 encoding config init ( #1543 )
...
* Improve error handling for EIP-712 encoding config init
* changelog
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-09 16:37:00 +00:00
dependabot[bot]
e1de07dcdc
build(deps): bump certifi in /tests/integration_tests ( #1545 )
...
Bumps [certifi](https://github.com/certifi/python-certifi ) from 2022.9.24 to 2022.12.7.
- [Release notes](https://github.com/certifi/python-certifi/releases )
- [Commits](https://github.com/certifi/python-certifi/compare/2022.09.24...2022.12.07 )
---
updated-dependencies:
- dependency-name: certifi
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-09 16:33:09 +01:00
Austin Chandra
ef4e068606
Rename getEIP712Hash to Bytes to clarity method intent ( #1539 )
...
* Rename getEIP712Hash to Bytes to clarity method intent
* Update comments and revert unrelated code
* Fix variable naming in tests
* Fix to use raw data rather than hash from Go-Ethereum interface
* Update eip712_test to detect EIP-712 hash vs bytes
* Update TypedData conversion error message
Co-authored-by: Freddy Caceres <facs95@gmail.com>
2022-12-09 00:51:24 +00:00
Freddy Caceres
4317929b1e
Skip undeterministic integration test ( #1531 )
...
* skip undeterministic integration test
* fix flake
* update gomod2nix
2022-12-08 17:19:13 -05:00
MalteHerrmann
51a3d6102e
imp (docs): Point to Evmos mempool docs for tx prioritization ( #1536 )
...
* Adjust priority tip docs to point to Evmos mempool docs
* remove some typos and out of place commas in feemarket concepts
* add missing "in"
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-07 15:32:38 +00:00
dependabot[bot]
9f23f29942
build(deps): bump technote-space/get-diff-action from 6.1.1 to 6.1.2 ( #1541 )
...
Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action ) from 6.1.1 to 6.1.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases )
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc )
- [Commits](https://github.com/technote-space/get-diff-action/compare/v6.1.1...v6.1.2 )
---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-07 16:30:42 +01:00
dependabot[bot]
876569145d
build(deps): bump golang.org/x/net from 0.3.0 to 0.4.0 ( #1542 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.3.0 to 0.4.0.
- [Release notes](https://github.com/golang/net/releases )
- [Commits](https://github.com/golang/net/compare/v0.3.0...v0.4.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-07 15:08:31 +04:00
dependabot[bot]
6a32c00446
build(deps): bump golang.org/x/net from 0.2.0 to 0.3.0 ( #1535 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.2.0 to 0.3.0.
- [Release notes](https://github.com/golang/net/releases )
- [Commits](https://github.com/golang/net/compare/v0.2.0...v0.3.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-06 21:44:52 +00:00
dependabot[bot]
040c3a625c
build(deps): bump qs from 6.5.2 to 6.5.3 in /tests/solidity ( #1537 )
...
Bumps [qs](https://github.com/ljharb/qs ) from 6.5.2 to 6.5.3.
- [Release notes](https://github.com/ljharb/qs/releases )
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ljharb/qs/compare/v6.5.2...v6.5.3 )
---
updated-dependencies:
- dependency-name: qs
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-06 22:37:25 +01:00
dependabot[bot]
10a9b77bd8
build(deps): bump golang.org/x/text from 0.4.0 to 0.5.0 ( #1534 )
...
Bumps [golang.org/x/text](https://github.com/golang/text ) from 0.4.0 to 0.5.0.
- [Release notes](https://github.com/golang/text/releases )
- [Commits](https://github.com/golang/text/compare/v0.4.0...v0.5.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/text
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-05 13:52:29 +01:00
Austin Chandra
d3650ad96e
fix: Bump Go-Ethereum dependency to 1.10.26 ( #1532 )
...
* fix: Bump Go-Ethereum dependency to 1.10.26
* Add changelog entry
2022-12-05 05:34:41 -05:00
Austin Chandra
39309e0b21
chore(evm): add comment regarding RANDOM opcode ( #1520 )
...
* fix: add random field to BlockContext using block header hash
* add comment
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2022-12-02 14:00:46 +01:00
Federico Kunze Küllmer
9077172f8e
feat(ci): add Golang dependency vulnerability check ( #1528 )
...
* feat(ci): add Golang dependency vulnerability check
* update
* check run
* c++
2022-12-02 12:57:14 +00:00
Austin Chandra
d9fc67769b
chore(ante): deprecate legacy EIP-712 signature verification via AnteHandler ( #1521 )
...
* fix: rename EIP-712 sig. verification to indicate Legacy status
* Add changelog entry
* Update changelog, refactor implementation, update comments
* Apply suggestions from code review
* address comments
* changelog
* Update CHANGELOG.md
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
* fix test
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
2022-12-02 12:38:34 +00:00
Adi Saravanan
a230c0ec2c
tests(integration): block gas limit tests ( #1500 )
...
* added antehandler test
* add integration tests
* add back gas call test
* added integration tests v2
* linters
* Update tests/integration_tests/test_gas.py
* Update tests/integration_tests/test_gas.py
* update gomod2nix
* Update tests/integration_tests/test_gas.py
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Freddy Caceres <facs95@gmail.com>
2022-12-02 12:23:11 +00:00
dependabot[bot]
5b43aab0d5
build(deps): bump decode-uri-component in /tests/solidity ( #1526 )
...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component ) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases )
- [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2 )
---
updated-dependencies:
- dependency-name: decode-uri-component
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-02 12:15:05 +01:00
dependabot[bot]
1154b1edfd
build(deps): bump github.com/cosmos/cosmos-proto ( #1525 )
...
Bumps [github.com/cosmos/cosmos-proto](https://github.com/cosmos/cosmos-proto ) from 1.0.0-alpha8 to 1.0.0-beta.1.
- [Release notes](https://github.com/cosmos/cosmos-proto/releases )
- [Commits](https://github.com/cosmos/cosmos-proto/compare/v1.0.0-alpha8...v1.0.0-beta.1 )
---
updated-dependencies:
- dependency-name: github.com/cosmos/cosmos-proto
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-02 12:06:17 +01:00