-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.21 - [email protected], wasmvm@v2, ibc-go@v8 (#265)
* add stargate queries to wasmOpts * log upgrade * move govPropHandlers to modules file, rename AppModuleBasic type, only include impacted delegators in upgrade, ugrade go simulation test layout * remove printing log file * e2e localbitsong without state * add upgrade test for v020 * bump * clean e2e repo format * migrate to cosmos-sdk:v0.50.11 * dev: bump proto gen commands * dev: add v021 upgrade * dev: add icq & ibc-wasm modules * dev: add ibc_hooks module, bump [email protected] & [email protected] * dev: add x/cadance module * dev: go mod tidy * dev: add smart-account module * dev: add smart-account * dev: add smart-accounts into apps anteHandler, bump keeper test-suite, * dev: x/smart-account tests * dev: add simulation ibctest library, validate feegrant if possible during ValidateAuthenticatorFeePayer, configure expidited props, * dev: SetOrderPreBlockers , reimplement ibc-wasm * dev: move e2e-folder into test folder * dev: update BaseApp sequence, add PreBlocker, custom PostHandler for x/accounts, PreComitter, add v021 upgrade unit tests * dev: bump gen cmd types * dev + chore: bump ict go.mod , bump go min requirement to 1.23 * dev: bump dependencie, update pfm in app * chore: bump go & alpine images * dev: topologically sort app logic * dev: add swagger config yaml * dev: prep fantoken interfact for simulation module * dev: remove redundant antehandler logic * dev: sorted cadance keeper after wasmkeeper * dev: smart-account integration tests * dev: sort keepers correctly * fix pfm & transfer module order * dev: add ibchost legacy key subspace for migration, v021 upgrade unit tests, v021 upgradHandler logic * dev: run migrations first before update store params * bump wasm-vm for CWA-2025-001 * chore: bump actions/upload-artifact@v4 * update height to upgrade block * enable vote extensions for block after upgrade * dev: use 1 wasmvm for x/wasm & wasm light client, * dev:compare del shares with legacyzerodec, include patch to remove specific delegations from store * use lte smallest dec * bump * chore: remove init-from-state, go mod tidy ict * Update Makefile to check Go version before compiling #226 * dev: use sdkCtx for all logic in upgradeHandler * dev: include: 13e-17 staking shares in being removed during the patch * dev: add mainnet seeds to initCmd * chore: coderabbit suggestions, fix ci actions step2 * chore: rename tmttypes to cmttypes, add init function to automate mainnet init * dev: continue if no delInfo found. --------- Co-authored-by: hard-nett <[email protected]> Co-authored-by: simi <[email protected]>
- Loading branch information
1 parent
3f17bd7
commit 8928250
Showing
269 changed files
with
30,425 additions
and
3,182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Setup Go 🧰 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.22 | ||
go-version: 1.23 | ||
|
||
- name: Unshallow | ||
run: git fetch --prune --unshallow --tags --force | ||
|
@@ -49,14 +49,14 @@ jobs: | |
- name: Setup Go 🧰 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.22 | ||
go-version: 1.23 | ||
|
||
- name: Build the binary 🏭 | ||
run: | | ||
LEDGER_ENABLED=true make build | ||
mv build/bitsongd "build/bitsongd-$VERSION-darwin-amd64" | ||
- name: Upload the artifacts 📤 | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "darwin-amd64" | ||
path: "build/*darwin*amd64*" | ||
|
@@ -80,7 +80,7 @@ jobs: | |
- name: Setup Go 🧰 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.22 | ||
go-version: 1.23 | ||
|
||
- name: Compute diff 📜 | ||
uses: technote-space/[email protected] | ||
|
@@ -95,13 +95,13 @@ jobs: | |
GOARCH=${{ matrix.go-arch }} LEDGER_ENABLED=true make build | ||
mv build/bitsongd "build/bitsongd-$VERSION-linux-${{ matrix.go-arch }}" | ||
- name: Upload the linux/amd64 artifact 📤 | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "linux-amd64" | ||
path: "build/*linux*amd64*" | ||
|
||
- name: Upload the linux/arm64 artifact 📤 | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "linux-arm64" | ||
path: "build/*linux*arm64*" | ||
|
@@ -125,15 +125,15 @@ jobs: | |
- name: Setup Go 🧰 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.22 | ||
go-version: 1.23 | ||
|
||
- name: Build the binary 🏭 | ||
run: | | ||
make LEDGER_ENABLED=true build | ||
echo "build/bitsongd-$env:VERSION-$env:COMMIT-windows-amd64.exe" | ||
mv build/bitsongd.exe "build/bitsongd-$env:VERSION-windows-amd64.exe" | ||
- name: Upload the artifacts 📤 | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "windows-amd64" | ||
path: "build/*windows*amd64*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.