Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Bridge module and upgrade sdk50 #179

Merged
merged 55 commits into from
Nov 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
efc7974
remove multistaking module in app
trinitys7 Oct 1, 2024
b720f8e
Migrate realio network to sdk 50
trinitys7 Oct 4, 2024
ef4f39d
Fix all tests
trinitys7 Oct 8, 2024
2c58c9e
Add migration for asset module
trinitys7 Oct 8, 2024
d722f6b
Use latest multistaking version
trinitys7 Oct 14, 2024
3439a57
Separate legacy params and params
trinitys7 Oct 14, 2024
2f338d7
remove multistaking upgrade
trinitys7 Oct 14, 2024
b39bf2c
Draft bridge module
trinitys7 Oct 15, 2024
426fa58
Add upgrade handler
trinitys7 Oct 16, 2024
9df76b1
Fix ci
trinitys7 Oct 16, 2024
7ecb16e
Add unit test for bridge module
trinitys7 Oct 17, 2024
5f409a9
Rename
trinitys7 Oct 18, 2024
02e5c13
fix redundant code
trinitys7 Oct 18, 2024
dde0bab
lint
trinitys7 Oct 18, 2024
dc78498
Merge pull request #16 from decentrio/feat/bridge-module
trinitys7 Oct 18, 2024
ea841b6
upgrade handler
lacsomot Oct 18, 2024
2108721
cli
lacsomot Oct 18, 2024
af95502
nits
likesToEatFish Oct 21, 2024
64fedbf
Finish all fix for upgrade sdk50
trinitys7 Oct 21, 2024
09e9116
cli
lacsomot Oct 23, 2024
a081554
use tempdir
lacsomot Oct 23, 2024
4b47750
minor fix in app
lacsomot Oct 23, 2024
9bef0f2
nit
lacsomot Oct 23, 2024
78d395f
delete ethermint store content
catShaark Oct 23, 2024
45a9c2b
update upgrade handler
catShaark Oct 25, 2024
e1e2f26
Upgrade and replacing evm success
trinitys7 Oct 25, 2024
723c49a
realio crypto
trinitys7 Oct 25, 2024
fae2236
fix evmos pubkeys
trinitys7 Oct 25, 2024
7498d28
update with current commit
trinitys7 Oct 25, 2024
a733c75
Add mock Erc20 keeper
trinitys7 Oct 25, 2024
43aeb2b
Remove unused functions
trinitys7 Oct 25, 2024
ce7041b
Add codec for EthAccount
trinitys7 Oct 25, 2024
6cb7a84
Use sdk.AccountI
trinitys7 Oct 25, 2024
03bfffe
Generate proto for PubKey and EthAccount
trinitys7 Oct 25, 2024
4bfba55
Update query
trinitys7 Oct 25, 2024
77836aa
Fix tests
trinitys7 Oct 28, 2024
cfa1391
lint
trinitys7 Oct 28, 2024
54e03be
remove redudant file in crypto
trinitys7 Oct 28, 2024
c2ed002
lint
trinitys7 Oct 29, 2024
94b78ad
Remove upgrade module when calling begin blocker
trinitys7 Oct 29, 2024
ce49ddc
Update third party proto and swagger
trinitys7 Oct 30, 2024
0da4fb6
nit
trinitys7 Oct 30, 2024
45f0757
remove nolint
neitdung Oct 30, 2024
c92be0c
nit
trinitys7 Oct 31, 2024
f4cb184
remove params subspace on bridge module
trinitys7 Oct 31, 2024
7d48adc
nit
trinitys7 Nov 1, 2024
d573c2b
lint
trinitys7 Nov 1, 2024
6b89d71
lint
lacsomot Nov 4, 2024
ff11ac9
Add precompile and update evm param
trinitys7 Nov 4, 2024
8356719
Modify mint params in upgrade
trinitys7 Nov 5, 2024
b152550
Fix ante logic and remove precompiles
trinitys7 Nov 5, 2024
a9b9109
Change permissionless to permissioned in evm params
trinitys7 Nov 8, 2024
4c4f46e
Remove call policy and lint
trinitys7 Nov 9, 2024
d0decd4
Update bridge params for testnet
trinitys7 Nov 15, 2024
4823ac3
Update release scripts
trinitys7 Nov 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix ci
trinitys7 committed Oct 16, 2024
commit 9df76b135c4f622fbf70c73025b94c653710a270
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20.2
go-version: 1.22
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: 1.22
check-latest: true
- name: release dry run
run: make release-dry-run
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -18,12 +18,12 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.22.2'
cache: false
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.52.2
version: v1.57.1

2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
go-version: [1.22.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps: