Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(proto)!: update archway-proto to Archway v7 #33

Merged
merged 29 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ed19a65
build(proto): rename archway submodule
aelesbao Oct 17, 2023
5f5cd4a
build(proto): bump archway to v7
aelesbao Oct 17, 2023
a109bc4
build(proto): remove git submodule
aelesbao May 21, 2024
c51c60c
build: use new cargo config file name
aelesbao May 21, 2024
7891bb0
build: bump workspace crates
aelesbao May 21, 2024
956fee3
revert: build(proto): remove git submodule
aelesbao May 21, 2024
5ad7c99
build: move sub-modules to external dir
aelesbao May 21, 2024
1537fbf
build(proto): generate proto files for all deps
aelesbao May 21, 2024
c419ec7
build: update lock file
aelesbao May 21, 2024
18dc551
build(proto): remove tonic-build
aelesbao May 21, 2024
cc94032
build(proto): add serde support
aelesbao May 21, 2024
a77aab3
build(proto): revert serde support
aelesbao May 21, 2024
40f8a99
build(proto): add missing proto files
aelesbao May 21, 2024
a783521
fix(proto): rustfmt *.rs files
aelesbao May 22, 2024
34be24c
feat(proto): add proto file descriptors
aelesbao May 22, 2024
6e75481
chore: revert table
aelesbao May 22, 2024
63400df
feat(proto): enable type names
aelesbao May 22, 2024
4bd014b
fix(proto): patch name clash on cosmos staking
aelesbao May 22, 2024
84059d7
fix(proto): remove ignored proto packages from compilation
aelesbao May 22, 2024
5afddce
fix(contracts): resolve deprecation warnings
aelesbao May 22, 2024
53372f8
style: cargo clippy
aelesbao May 22, 2024
cd171bc
ci: add github token to increase request limit
aelesbao May 22, 2024
7865b39
revert(proto): remove ignored proto packages from compilation
aelesbao May 22, 2024
79d1be5
chore(proto): rename methods
aelesbao May 22, 2024
ab7d6aa
build(proto): only include cosmos proto files
aelesbao May 22, 2024
0a913f9
refactor(proto): log messages
aelesbao May 22, 2024
9c45626
build(proto): bump package version
aelesbao May 22, 2024
92858ac
refactor(proto): renamed generated code output
aelesbao May 22, 2024
36156c5
build(proto): remove amino and gogoproto packages
aelesbao May 22, 2024
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
File renamed without changes.
2 changes: 2 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ jobs:

- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run cargo fmt
uses: actions-rs/cargo@v1
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ artifacts/

# Local network history
.archway/local-1.json

# Exported by proto-build
/proto
14 changes: 11 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
[submodule "archway-network"]
path = archway-network
[submodule "archway"]
path = external/archway
url = https://github.com/archway-network/archway
branch = tags/v4.0.2
[submodule "external/cosmos-sdk"]
path = external/cosmos-sdk
url = https://github.com/cosmos/cosmos-sdk
[submodule "external/ibc-go"]
path = external/ibc-go
url = https://github.com/cosmos/ibc-go
[submodule "external/wasmd"]
path = external/wasmd
url = https://github.com/cosmwasm/wasmd
Loading
Loading