Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
04de1c1
tests: sdl parity
vertex451 Jan 26, 2026
2639285
fix: address rabbitai comments
vertex451 Jan 26, 2026
b7a1080
fix: groups output schema
vertex451 Jan 27, 2026
005700d
Merge branch 'main' of github.com:akash-network/chain-sdk into artem/…
vertex451 Jan 27, 2026
0a102be
refactor: moved generate-sdl-fixtures out of the lib
vertex451 Jan 27, 2026
77b9bf0
fix: made generate-sdl-fixtures working as a separate go mod
vertex451 Jan 27, 2026
d92c9a0
refactor: moved generate-sdl-fixtures to the sdl dir
vertex451 Jan 29, 2026
446c74c
refactor: pulled main
vertex451 Feb 10, 2026
2c6f6f5
refactor: lint-ts
vertex451 Feb 10, 2026
03a74fc
feat: sanitized remote resolution in refs
vertex451 Feb 11, 2026
c1aae73
Merge branch 'main' of github.com:akash-network/chain-sdk into artem/…
vertex451 Feb 11, 2026
9469e47
refactor: reduce diff
vertex451 Feb 11, 2026
12d33ea
refactor: reduce diff
vertex451 Feb 11, 2026
30c0ffc
Update go/sdl/sdl-input.schema.yaml
vertex451 Feb 11, 2026
c9035bd
refactor: reduce diff
vertex451 Feb 11, 2026
c2649db
Merge branch 'artem/sdl-parity-tests' of github.com:akash-network/cha…
vertex451 Feb 11, 2026
af9dad2
iterate
vertex451 Feb 12, 2026
b87ccc9
merged main
vertex451 Feb 12, 2026
e44230d
fix: tests
vertex451 Feb 12, 2026
9e0618f
fix: tests
vertex451 Feb 13, 2026
dd1f10c
Merge branch 'main' of github.com:akash-network/chain-sdk into artem/…
vertex451 Feb 13, 2026
dfb27a5
fix: tests
vertex451 Feb 13, 2026
a55f360
refactor: reduce diff
vertex451 Feb 13, 2026
15522e0
iterate
vertex451 Feb 13, 2026
3c85f01
feat: switched to new manifest generation
vertex451 Feb 13, 2026
3f750a7
chore: moved normalization to test
vertex451 Feb 13, 2026
aff903b
Merge branch 'main' into artem/sdl-parity-tests
vertex451 Feb 26, 2026
bf8c13f
chore: addressed comments
vertex451 Feb 26, 2026
c10cfd0
chore: merged schemas
vertex451 Feb 26, 2026
d5e7345
tests: fix tests against new schema
vertex451 Feb 27, 2026
aef301a
Merge branch 'main' of github.com:akash-network/chain-sdk into artem/…
vertex451 Mar 6, 2026
f6b15fa
Merge branch 'main' into artem/sdl-parity-tests
Zblocker64 Mar 24, 2026
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
23 changes: 21 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- name: Setup env
uses: HatsuneMiku3939/direnv-action@v1
- run: |
Expand All @@ -28,7 +27,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
with:
fetch-depth: 0
- name: Setup env
uses: HatsuneMiku3939/direnv-action@v1
- run: |
Expand All @@ -54,3 +54,22 @@ jobs:
with:
files: ./ts/coverage
token: ${{ secrets.CODECOV_TOKEN }}
sdl-parity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup env
uses: HatsuneMiku3939/direnv-action@v1
- run: |
toolchain=$(./script/tools.sh gotoolchain | sed 's/go*//')
echo "GOVERSION=${toolchain}" >> $GITHUB_ENV
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: ts/package-lock.json
- uses: actions/setup-go@v5
with:
go-version: "${{ env.GOVERSION }}"
- run: make test-sdl-parity
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ coverage.txt
dev.env

.editorconfig

# coverage output files
coverage-go-cli.txt
coverage-go-sdl.txt
coverage-go.txt
3 changes: 3 additions & 0 deletions go/cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,9 @@ require (
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ulikunitz/xz v0.5.14 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/zeebo/errs v1.4.0 // indirect
github.com/zondax/golem v0.27.0 // indirect
github.com/zondax/hid v0.9.2 // indirect
Expand Down
6 changes: 6 additions & 0 deletions go/cli/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,12 @@ github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijb
github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=
github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=
github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
5 changes: 4 additions & 1 deletion go/sdl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ go 1.25.0
toolchain go1.25.1

require (
cosmossdk.io/log v1.6.1
cosmossdk.io/math v1.5.3
github.com/blang/semver/v4 v4.0.0
github.com/cosmos/cosmos-sdk v0.53.5
github.com/stretchr/testify v1.11.1
github.com/xeipuuv/gojsonschema v1.2.0
gopkg.in/yaml.v3 v3.0.1
pkg.akt.dev/go v0.1.1
)
Expand Down Expand Up @@ -40,7 +42,6 @@ require (
cosmossdk.io/core v0.11.3 // indirect
cosmossdk.io/depinject v1.2.1 // indirect
cosmossdk.io/errors v1.0.2 // indirect
cosmossdk.io/log v1.6.1 // indirect
cosmossdk.io/schema v1.1.0 // indirect
cosmossdk.io/store v1.1.2 // indirect
cosmossdk.io/x/evidence v0.2.0 // indirect
Expand Down Expand Up @@ -177,6 +178,8 @@ require (
github.com/tidwall/btree v1.7.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/zondax/golem v0.27.0 // indirect
github.com/zondax/hid v0.9.2 // indirect
github.com/zondax/ledger-go v1.0.1 // indirect
Expand Down
6 changes: 6 additions & 0 deletions go/sdl/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,12 @@ github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijb
github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=
github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=
github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
Loading
Loading