Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ yarn.lock

node_modules/

/protos/cosmos-sdk
/protos/ibc-go
/protos/wasmd

Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[submodule "cosmos-sdk"]
path = protos/cosmos-sdk
path = protos/cosmos-sdk-src
url = https://github.com/cosmos/cosmos-sdk
[submodule "wasmd"]
path = protos/wasmd-src
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ and this project adheres to

- The TypeScript build `target` and `lib` is now ES2022,
[analogue to CosmJS 0.35](https://github.com/cosmos/cosmjs/pull/1783).
- Upgrade types
- Cosmos SDK to 0.53.4
- ibc-go to 0.10.3
- wasmd 0.61.6

## [0.10.1] - 2025-07-29

Expand Down
1 change: 0 additions & 1 deletion protos/cosmos-sdk
Submodule cosmos-sdk deleted from 7b9d2f
1 change: 1 addition & 0 deletions protos/cosmos-sdk-src
Submodule cosmos-sdk-src added at 908df9
2 changes: 1 addition & 1 deletion protos/ibc-go-src
Submodule ibc-go-src updated 1904 files
2 changes: 1 addition & 1 deletion protos/wasmd-src
Submodule wasmd-src updated 175 files
8 changes: 2 additions & 6 deletions scripts/codegen.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ const telescope = require("@hyperweb/telescope").default;
const outPath = join(__dirname, "/../src");

telescope({
protoDirs: [
"protos/cosmos-sdk/proto",
"protos/cosmos-sdk/third_party/proto",
"protos/wasmd",
"protos/ibc-go",
],
protoDirs: ["protos/cosmos-sdk", "protos/wasmd", "protos/ibc-go"],
outPath: outPath,
options: {
logLevel: 0,
Expand Down Expand Up @@ -81,6 +76,7 @@ telescope({
useCosmosSDKDec: false,
},
num64: "bigint",
autoFixUndefinedEnumDefault: true, // workaround for https://github.com/cosmos/cosmjs-types/issues/112
},
},
lcdClients: {
Expand Down
7 changes: 5 additions & 2 deletions scripts/exports_protos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
set -o errexit -o nounset -o pipefail
command -v shellcheck >/dev/null && shellcheck "$0"

for dir in ibc-go wasmd ; do
for dir in cosmos-sdk ibc-go wasmd; do
rm -rf "protos/$dir"
mkdir -p "protos/$dir"
echo "Autogenerated folder, see export_protos.sh" > "protos/$dir/README.md"
echo "Autogenerated folder, see export_protos.sh" >"protos/$dir/README.md"

buf export "protos/$dir-src/" --output "protos/$dir"
done

# Remove stray semicolons (see https://github.com/cosmos/cosmos-sdk/pull/24105)
find protos/cosmos-sdk/ -type f -name "*.proto" -exec sed -i -e 's/^ ;//g' {} \;
181 changes: 0 additions & 181 deletions src/capability/v1/capability.ts

This file was deleted.

Loading