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

Compare Cosmos SDK v0.43-beta1 #2

Closed
wants to merge 50 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
dc627ee
Set yarn nodeLinker to node-modules
willclarktech May 27, 2021
cb5fb6c
Add more yarn config
willclarktech May 27, 2021
f2c621d
Init yarn
willclarktech May 27, 2021
0389d66
Add yarn plugins
willclarktech May 27, 2021
fcdd6ea
Fill out package.json
willclarktech May 27, 2021
66cd007
Update git configs for yarn v2
willclarktech Jun 1, 2021
4741cc8
Add cosmos package
willclarktech Jun 1, 2021
4173433
Add cosmos-sdk@v0.42.0 git submodule
willclarktech Jun 1, 2021
bbfc634
Set nodeLinker to pnp
willclarktech Jun 1, 2021
fdfb683
Add ts-proto dev dependency
willclarktech Jun 1, 2021
1782331
Add yarn2-friendly ts-proto protoc plugin
willclarktech Jun 1, 2021
728bbb8
cosmos: Add define-proto script
willclarktech Jun 1, 2021
95595b8
cosmos: Add prettier dependency
willclarktech Jun 1, 2021
6653259
Add prettier config
willclarktech Jun 1, 2021
948c1db
cosmos: Add format script
willclarktech Jun 1, 2021
b7b7b65
cosmos: Add proto definitions
willclarktech Jun 1, 2021
e6ec912
cosmos: Add generated protobuf definitions
willclarktech Jun 1, 2021
cd4f255
cosmos: Add typescript dev dependency
willclarktech Jun 1, 2021
581e480
Add typescript configs
willclarktech Jun 1, 2021
f324851
cosmos: Add build script
willclarktech Jun 1, 2021
3938876
cosmos: Add dependencies
willclarktech Jun 1, 2021
cc3042d
cosmos: Add build dir to .gitignore
willclarktech Jun 1, 2021
77e7f5d
cosmos: Remove main and types fields from package.json
willclarktech Jun 1, 2021
6b1bbed
Move define-proto script into root
willclarktech Jun 2, 2021
c32c7bd
Add generated directory to .gitignore
willclarktech Jun 2, 2021
01f7c12
Add move-proto script
willclarktech Jun 2, 2021
47ded79
Remove workspaces
willclarktech Jun 2, 2021
2ee1311
Remove move-proto script
willclarktech Jun 2, 2021
95a68bd
Add dependencies to root
willclarktech Jun 2, 2021
a85a4bd
Add build script
willclarktech Jun 2, 2021
1c8005e
Remove private setting from package.json
willclarktech Jun 2, 2021
7f47bfd
Update files setting in package.json
willclarktech Jun 2, 2021
8f338a0
Set protoc out dir to src
willclarktech Jun 2, 2021
e8e402e
Add generated src files
willclarktech Jun 2, 2021
68441f4
Update tsconfig
willclarktech Jun 2, 2021
5c6a20a
Add wasmd submodule
willclarktech Jun 2, 2021
706e686
Remove cosmos-sdk submodule
willclarktech Jun 2, 2021
4f9b7fa
Generate types for cosmwasm
willclarktech Jun 2, 2021
b32baae
Add generated cosmwasm types
willclarktech Jun 2, 2021
e733c42
Generate types for confio
willclarktech Jun 2, 2021
bcc148e
Add generated confio types
willclarktech Jun 2, 2021
a39c20e
Generate types for IBC
willclarktech Jun 2, 2021
376d1d3
Add generated IBC types
willclarktech Jun 2, 2021
4341055
Add prepare script
willclarktech Jun 2, 2021
ef53b81
Add prepare script to flatten build
willclarktech Jun 2, 2021
a15de62
Rename wasmd submodule
willclarktech Jun 2, 2021
a50627a
Merge pull request #1 from confio/centralise-build
willclarktech Jun 2, 2021
4b0c8f6
Add cosmos-sdk submodule
willclarktech Jun 2, 2021
7691507
Add script for generating cosmos-sdk-0.43 types
willclarktech Jun 2, 2021
29219a2
Update generated cosmos types
willclarktech Jun 2, 2021
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
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.yarn/** linguist-vendored

*.zip filter=lfs diff=lfs merge=lfs -text
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/.yarn/*
!.yarn/patches
!/.yarn/plugins
!/.yarn/releases
!/.yarn/sdks
!/.yarn/versions

# Swap the comments on the following lines if you don't wish to use zero-installs
# Documentation here: https://yarnpkg.com/features/zero-installs
!/.yarn/cache
#/.pnp.*

/build/
/confio/
/cosmos/
/cosmos_proto/
/cosmwasm/
/gogoproto/
/google/
/ibc/
/tendermint/
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "wasmd"]
path = wasmd-0.16
url = https://github.com/cosmwasm/wasmd
[submodule "cosmos-sdk-0.43"]
path = cosmos-sdk-0.43
url = https://github.com/cosmos/cosmos-sdk
Loading