-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from neutron-org/fix/change-autogen-behaviour
fix: change autogen behaviour #NTRN-397
- Loading branch information
Showing
20 changed files
with
203 additions
and
581 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
Submodule admin-module-src
updated
2 files
+6 −0 | proto/cosmos/adminmodule/adminmodule/tx.proto | |
+35 −35 | x/adminmodule/types/tx.pb.go |
Submodule block-sdk-src
updated
from 137ed4 to 1ea62f
Submodule cosmos-sdk-src
updated
159 files
Submodule feemarket-src
updated
34 files
Submodule ibc-go-src
updated
from fcd223 to 6b2554
Submodule neutron-src
added at
a31922
Submodule slinky-src
updated
from a82dfa to ef03f4
Submodule wasmd-src
updated
13 files
+14 −0 | x/wasm/keeper/handler_plugin.go | |
+20 −0 | x/wasm/keeper/keeper.go | |
+3 −0 | x/wasm/keeper/keeper_cgo.go | |
+6 −0 | x/wasm/keeper/options.go | |
+11 −3 | x/wasm/keeper/options_test.go | |
+1 −1 | x/wasm/keeper/query_plugins_test.go | |
+11 −0 | x/wasm/types/context.go | |
+3 −0 | x/wasm/types/errors.go | |
+2 −19 | x/wasm/types/params.go | |
+8 −30 | x/wasm/types/tx.go | |
+54 −0 | x/wasm/types/tx_test.go | |
+32 −0 | x/wasm/types/validation.go | |
+3 −1 | x/wasm/types/wasmer_engine.go |
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,41 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit -o nounset -o pipefail | ||
command -v shellcheck >/dev/null && shellcheck "$0" | ||
|
||
DIRS=(capability cosmos cosmos_proto cosmwasm feemarket gaia gogoproto google ibc neutron osmosis sdk slinky tendermint) | ||
FILES=( | ||
binary.d.ts | ||
binary.js | ||
binary.js.map | ||
helpers.d.ts | ||
helpers.js | ||
helpers.js.map | ||
json-safe.d.ts | ||
json-safe.js | ||
json-safe.js.map | ||
utf8.d.ts | ||
utf8.js | ||
utf8.js.map | ||
varint.d.ts | ||
varint.js | ||
varint.js.map | ||
querier_types.js | ||
querier_types.d.ts | ||
) | ||
|
||
for dir in "${DIRS[@]}"; do | ||
rm -rf "$dir" | ||
done | ||
|
||
for f in "${FILES[@]}"; do | ||
if [[ $f != *"json-safe"* ]]; then | ||
rm -rf "$f" | ||
fi | ||
done | ||
|
||
rm -rf ./build | ||
|
||
for dir in admin-module block-sdk cosmos-sdk feemarket ibc-go neutron slinky wasmd ; do | ||
rm -rf "protos/$dir" | ||
done |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit -o nounset -o pipefail | ||
command -v shellcheck >/dev/null && shellcheck "$0" | ||
|
||
readonly ADMIN_MODULE_DIR="admin-module-src" | ||
readonly BLOCK_SDK_DIR="block-sdk-src" | ||
readonly COSMOS_SDK_DIR="cosmos-sdk-src" | ||
readonly FEEMARKET_DIR="feemarket-src" | ||
readonly IBC_GO_DIR="ibc-go-src" | ||
readonly NEUTRON_DIR="neutron-src" | ||
readonly SLINKY_DIR="slinky-src" | ||
readonly WASMD_DIR="wasmd-src" | ||
|
||
readonly ADMIN_MODULE_REV="v2.0.2" | ||
readonly BLOCK_SDK_REV="v2.1.5" | ||
readonly COSMOS_SDK_REV="v0.50.9-neutron" | ||
readonly FEEMARKET_REV="v1.1.1" | ||
readonly IBC_GO_REV="v8.5.1" | ||
readonly NEUTRON_REV="main" | ||
readonly SLINKY_REV="v1.0.12" | ||
readonly WASMD_REV="v0.51.2-neutron" | ||
|
||
checkout_version () { | ||
git -C protos/$1 checkout $2 | ||
} | ||
|
||
checkout_version $ADMIN_MODULE_DIR $ADMIN_MODULE_REV | ||
checkout_version $BLOCK_SDK_DIR $BLOCK_SDK_REV | ||
checkout_version $COSMOS_SDK_DIR $COSMOS_SDK_REV | ||
checkout_version $FEEMARKET_DIR $FEEMARKET_REV | ||
checkout_version $IBC_GO_DIR $IBC_GO_REV | ||
checkout_version $NEUTRON_DIR $NEUTRON_REV | ||
checkout_version $SLINKY_DIR $SLINKY_REV | ||
checkout_version $WASMD_DIR $WASMD_REV |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.