Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5efacab
chore: add docker compose for local network and resolve issue with in…
KentaMori115 Oct 30, 2025
320f08d
resolve conflict in Makefile
KentaMori115 Nov 18, 2025
2f58ffe
chore: remove localnet config files
KentaMori115 Nov 4, 2025
4e6c3a7
fix: resolve issue with unit tests
KentaMori115 Nov 6, 2025
5d0706e
chore: upgrade go version
KentaMori115 Nov 6, 2025
ae057a5
chore: upgrade ics20 precompile
KentaMori115 Nov 7, 2025
9776076
fix: resolve integration tests for ics20
KentaMori115 Nov 7, 2025
38a18be
fix: migrator in ibc and ante handler account keepr interface
KentaMori115 Nov 7, 2025
fd6b648
chore: fix make-test all command timeout and memory failure
KentaMori115 Nov 10, 2025
b927b8d
chore: add unordered tx support
KentaMori115 Nov 10, 2025
0a7adab
chore: restore fix of multistore snapshot
KentaMori115 Nov 10, 2025
a662710
update script to hold some tokens ine ach wallet
KentaMori115 Nov 11, 2025
940f9fe
resolve bug conflict with app.go
KentaMori115 Nov 18, 2025
2ebcd08
chore: add a simple erc20 token and its deployment script
KentaMori115 Nov 14, 2025
cb4d4c4
chore: add erc20 middleware for ibc v2
KentaMori115 Nov 17, 2025
abece9f
chore: update github workflow and docker file
KentaMori115 Nov 18, 2025
e2b466c
chore: fix github workflow
KentaMori115 Nov 19, 2025
db47663
chore: fix nix
KentaMori115 Nov 19, 2025
30cf986
chore: fix nix
KentaMori115 Nov 20, 2025
896db06
chore: fix bug with unit test and swagger
KentaMori115 Nov 20, 2025
b76d9eb
fix: lint check
KentaMori115 Nov 20, 2025
8dfb586
fix: nix github workflow
KentaMori115 Nov 20, 2025
5cccccf
fix: gomod2nix
KentaMori115 Nov 20, 2025
b5ad90c
fix: update gomod2nix.toml hashes for auth and cast modules
KentaMori115 Dec 1, 2025
17c49ae
chore: update gomod2nix.toml
KentaMori115 Dec 1, 2025
b3fec70
chore: fix gomod2nix.toml
KentaMori115 Dec 2, 2025
9dafc62
fix: proto swagger issue
KentaMori115 Dec 2, 2025
77c3b83
fix: proto check
KentaMori115 Dec 2, 2025
bff65e5
fix nix build
KentaMori115 Dec 2, 2025
93b75e7
fix: proto check
KentaMori115 Dec 2, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- uses: technote-space/get-diff-action@v5
id: git_diff
with:
Expand Down Expand Up @@ -58,4 +58,4 @@ jobs:
nix develop --impure .#ci --command ci-check-version
- name: Check if gomod2nix is up to date
run: |
nix develop --impure .#ci --command ci-check-gomod2nix
nix develop --impure .#ci --command ci-check-gomod2nix
2 changes: 1 addition & 1 deletion .github/workflows/dry-run-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
check-latest: true
- name: Pull LFS files
run: git lfs pull
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
check-latest: true
- name: Pull LFS files
run: git lfs pull
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
- uses: actions/checkout@v4
go-version: '1.24.10'
- uses: technote-space/get-diff-action@v5
with:
PATTERNS: |
Expand All @@ -27,7 +27,8 @@ jobs:
- uses: golangci/golangci-lint-action@v8
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v2.1.6
# Updated to v2.6 to support Go 1.24
version: v2.6
args: --timeout 10m
github-token: ${{ secrets.github_token }}
github-token: ${{ secrets.GITHUB_TOKEN }}
if: env.GIT_DIFF
11 changes: 8 additions & 3 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haqq-network/nix-action@master
- uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v12
with:
name: haqq
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: |
nix develop --impure #ci --command ci-proto
- name: Check that proto builds and committed
env:
NIX_CONFIG: "experimental-features = nix-command flakes"
run: |
nix develop --impure .#ci --command ci-proto

lint:
name: Proto lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: snyk/actions/setup@master
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Snyk monitor
run: snyk code test
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed in 7 days-before-close if no further activity occurs."
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days-before-close if no further activity occurs."
stale-issue-message: "This issue is stale because it has been open 45 days with no activity. Remove `Status: Stale` label or comment or this will be closed in 7 days."
days-before-stale: 45
days-before-close: 7
Expand Down
20 changes: 14 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ on:
jobs:
cleanup-runs:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master' }}
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"

install-tparse:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Display Go Version
run: go version
- name: Install tparse
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Checkout source
uses: actions/checkout@v4
- name: Generate LFS file list
Expand Down Expand Up @@ -68,10 +68,18 @@ jobs:
runs-on: ubuntu-cpu16-ram64
steps:
- uses: actions/checkout@v4
- uses: haqq-network/nix-action@master
- uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v12
with:
name: haqq
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
cacheKeyPostfix: ${{ hashFiles('**/go.sum') }}
- name: Update flake lock to use GitHub URLs
env:
NIX_CONFIG: "experimental-features = nix-command flakes"
run: |
nix flake update --no-registries || true
- name: Run nix package tests
env:
NIX_CONFIG: "experimental-features = nix-command flakes"
run: |
nix build .#haqq-with-tests --print-build-logs
nix build .#haqq-with-tests --print-build-logs --no-link
6 changes: 5 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "2"
run:
concurrency: 4
go: "1.23"
go: "1.24"
tests: true
issues:
max-issues-per-linter: 100
Expand All @@ -24,6 +24,10 @@ linters:
- unconvert
- unparam
settings:
revive:
rules:
- name: var-naming
disabled: true
dogsled:
max-blank-identifiers: 3
dupl:
Expand Down
20 changes: 0 additions & 20 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,32 +63,12 @@ builds:
- -tags=cgo
ldflags:
- -s -w -X github.com/cosmos/cosmos-sdk/version.Name=haqq -X github.com/cosmos/cosmos-sdk/version.AppName=haqqd -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}}
- id: "haqqd-windows"
main: ./cmd/haqqd
binary: bin/haqqd
env:
- CGO_ENABLED=1
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
goos:
- windows
goarch:
- amd64
flags:
- -tags=cgo
- -buildmode=exe
ldflags:
- -s -w -X github.com/cosmos/cosmos-sdk/version.Name=haqq -X github.com/cosmos/cosmos-sdk/version.AppName=haqqd -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}}

archives:
- name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
format_overrides:
- goos: windows
format: zip
builds:
- haqqd-darwin
- haqqd-darwin-arm64
- haqqd-windows
- haqqd-linux
- haqqd-linux-arm64

Expand Down
2 changes: 1 addition & 1 deletion .snyk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: v1.25.0
language-settings:
go: "1.23.10"
go: "1.24.10"
exclude:
global:
- client/export.go
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DIFF_TAG=$(shell git rev-list --tags="v*" --max-count=1 --not $(shell git rev-li
DEFAULT_TAG=$(shell git rev-list --tags="v*" --max-count=1)
# VERSION ?= $(shell echo $(shell git describe --tags $(or $(DIFF_TAG), $(DEFAULT_TAG))) | sed 's/^v//')

VERSION := "1.9.1"
VERSION := "1.10.0"
CBFTVERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
Expand Down Expand Up @@ -354,10 +354,10 @@ TEST_TARGETS := test-unit test-unit-cover test-race
# Test runs-specific rules. To add a new test target, just add
# a new rule, customise ARGS or TEST_PACKAGES ad libitum, and
# append the new rule to the TEST_TARGETS list.
test-unit: ARGS=-timeout=20m -race
test-unit: ARGS=-timeout=20m
test-unit: TEST_PACKAGES=$(PACKAGES_UNIT)

test-race: ARGS=-race
test-race: ARGS=-timeout=30m -race
test-race: TEST_PACKAGES=$(PACKAGES_NOSIMULATION)
$(TEST_TARGETS): run-tests

Expand Down
44 changes: 28 additions & 16 deletions api/ethermint/evm/v1/evm.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions api/ethermint/evm/v1/query.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions api/ethermint/evm/v1/query_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions api/ethermint/evm/v1/tx.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading