-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
33 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: NPM publish | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: make all | ||
working-directory: ./js | ||
- run: npm publish | ||
working-directory: ./js | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }} |
Submodule cosmos-proto
updated
6 files
+1 −1 | .github/workflows/lint-pr.yml | |
+50 −1 | anyutil/any.go | |
+22 −4 | anyutil/any_test.go | |
+1 −1 | anyutil/doc.go | |
+1 −1 | go.mod | |
+2 −2 | go.sum |
Submodule cosmos-sdk
updated
from 392af5 to bf1e1b
Submodule ibc-go
updated
1783 files
Submodule ics23
updated
from 74ce80 to bf89d9
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Submodule miniwasm
updated
15 files
+57 −0 | Dockerfile | |
+5 −5 | Makefile | |
+12 −18 | app/app.go | |
+5 −6 | app/genesis.go | |
+5 −14 | app/ibc-middleware/util.go | |
+6 −4 | app/lanes/free.go | |
+0 −39 | app/params/config.go | |
+1 −1 | app/params/proto.go | |
+9 −8 | app/test_helpers.go | |
+8 −8 | cmd/minitiad/config.go | |
+11 −1 | cmd/minitiad/init.go | |
+0 −3 | cmd/minitiad/root.go | |
+34 −34 | go.mod | |
+70 −70 | go.sum | |
+36 −0 | shared.Dockerfile |
Submodule wasmd
updated
20 files
+16 −1 | CHANGELOG.md | |
+325 −18 | docs/proto/proto-docs.md | |
+8 −2 | go.mod | |
+333 −0 | proto/cosmwasm/wasm/v1/proposal_legacy.proto | |
+0 −10 | proto/cosmwasm/wasm/v1/tx.proto | |
+3 −0 | x/wasm/ibc.go | |
+27 −10 | x/wasm/ibc_integration_test.go | |
+2 −1 | x/wasm/keeper/addresses_test.go | |
+0 −4 | x/wasm/keeper/events.go | |
+17 −24 | x/wasm/keeper/events_test.go | |
+15 −17 | x/wasm/keeper/genesis_test.go | |
+342 −0 | x/wasm/keeper/proposal_handler_legacy.go | |
+233 −0 | x/wasm/keeper/proposal_integration_test.go | |
+8 −8 | x/wasm/keeper/querier_test.go | |
+3 −0 | x/wasm/relay_pingpong_test.go | |
+33 −5 | x/wasm/types/codec.go | |
+804 −0 | x/wasm/types/proposal_legacy.go | |
+5,859 −0 | x/wasm/types/proposal_legacy.pb.go | |
+1,317 −0 | x/wasm/types/proposal_legacy_test.go | |
+146 −350 | x/wasm/types/tx.pb.go |