Skip to content

Commit

Permalink
Merge branch 'master' into release/v0.7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpioborn committed Jun 10, 2024
2 parents 8fa2f26 + cc22634 commit be36271
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,5 @@ jobs:
- name: Publish NPM Package
run: |
echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > sgejs/.npmrc
cat sgejs/.npmrc
cd sgejs
ls -la
npm publish --access=restricted --force
npm publish --access=public --force
4 changes: 3 additions & 1 deletion app/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import (
ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"
ibc "github.com/cosmos/ibc-go/v7/modules/core"
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"

wasm "github.com/CosmWasm/wasmd/x/wasm"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
Expand Down Expand Up @@ -120,12 +121,13 @@ var ModuleBasics = module.NewBasicManager(
vesting.AppModuleBasic{},
groupmodule.AppModuleBasic{},

wasm.AppModuleBasic{},
ibc.AppModuleBasic{},
wasm.AppModuleBasic{},
transfer.AppModuleBasic{},
ica.AppModuleBasic{},
ibcfee.AppModuleBasic{},
ibcwasmmodule.AppModuleBasic{},
ibctm.AppModuleBasic{},

// sge
betmodule.AppModuleBasic{},
Expand Down

0 comments on commit be36271

Please sign in to comment.