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

Cosmos upgrade 0.47 #155

Draft
wants to merge 36 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d35e39f
v0.47.4
lxgr-linux Aug 7, 2023
08483b3
0.47.5
lxgr-linux Oct 7, 2023
f32d118
Merge branch 'master' into cosmos_upgrade_0.47
lxgr-linux Oct 7, 2023
88c6e50
voting -> voteing
lxgr-linux Oct 7, 2023
83c422c
fixed ErrFinalizeSet
lxgr-linux Oct 7, 2023
a376c64
Added Makefile
ramuchi Oct 13, 2023
d515c48
Update Makefile
ramuchi Oct 13, 2023
fb1908f
Delete Makefile
ramuchi Oct 13, 2023
146ec5e
fixed
ramuchi Oct 13, 2023
5d6f01e
Update Makefile
ramuchi Oct 13, 2023
af94dd3
Update Makefile
ramuchi Oct 13, 2023
6f28203
Update Makefile
ramuchi Oct 13, 2023
8eaae69
Update Makefile
ramuchi Oct 15, 2023
5098586
Update Makefile
ramuchi Oct 15, 2023
90d2ecb
carddevnet-2
lxgr-linux Oct 17, 2023
26725ee
fixed coins distributed
lxgr-linux Oct 18, 2023
8a3d2e7
restructured voting
lxgr-linux Oct 25, 2023
fe4b699
corrected text
lxgr-linux Oct 25, 2023
4bb3b5f
Added warnings to makefile
lxgr-linux Oct 25, 2023
fefd398
Merge branch 'development' into abc
lxgr-linux Oct 25, 2023
bd2ddae
Merge pull request #161 from ramuchi/master
lxgr-linux Oct 25, 2023
d700cbb
Bump google.golang.org/grpc from 1.58.0 to 1.58.3
dependabot[bot] Oct 25, 2023
9a7ef4c
Added Comment
lxgr-linux Oct 26, 2023
db38559
Merge pull request #177 from DecentralCardGame/174-update-voting
lxgr-linux Oct 26, 2023
b375993
Merge pull request #176 from DecentralCardGame/dependabot/go_modules/…
lxgr-linux Oct 26, 2023
2b321d1
Fixed migratescript
lxgr-linux Oct 26, 2023
7bc1103
update public node config and scripts
patrickwieth Oct 31, 2023
d67b9a3
more scripts, set script now add 120 alpha cards
patrickwieth Nov 3, 2023
ec30c0d
Updated makefile to use ledger
lxgr-linux Nov 3, 2023
caf9a1a
Merge branch 'development' of github.com:DecentralCardGame/Cardchain …
lxgr-linux Nov 3, 2023
9154e1c
go sum
lxgr-linux Nov 9, 2023
a957bb8
Merge branch 'development' into cosmos_upgrade_0.47
lxgr-linux Nov 9, 2023
19a24cd
fixed amino debugging and added build dir to gitignore
lxgr-linux Nov 9, 2023
c2e55df
removed build dir
lxgr-linux Nov 9, 2023
4a8fb1a
Merge branch 'development' into cosmos_upgrade_0.47
lxgr-linux Nov 9, 2023
8533636
Ignite fun
lxgr-linux Dec 12, 2023
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 @@ -6,3 +6,4 @@ release/
.idea/
.vscode/
.DS_Store
/build
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN pip install tendermint-chunked-genesis-download


# install correct go version
RUN wget https://go.dev/dl/go1.20.2.linux-amd64.tar.gz
RUN tar -xvf go1.20.2.linux-amd64.tar.gz
RUN wget https://go.dev/dl/go1.21.0.linux-amd64.tar.gz
RUN tar -xvf go1.21.0.linux-amd64.tar.gz
RUN rm /usr/local/go -rf
RUN mv go /usr/local

Expand Down
35 changes: 35 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
###############################################################################
### Build ###
###############################################################################

# Default target
all: install

# Build directory
BUILDDIR := ./build

# Build the project
build: go.sum $(BUILDDIR)/
@echo "Warning: Building without version information"
@echo "Warning: To build with version info and defaults please use './ignite chain build'"
go build -tags=ledger -mod=readonly -o $(BUILDDIR)/ ./...

# Create the build directory
$(BUILDDIR)/:
mkdir -p $(BUILDDIR)/

# Install binary to ~/go/bin/
install: build
cp $(BUILDDIR)/Cardchaind ~/go/bin/

# Verify dependencies
go.sum: go.mod
@echo "Ensure dependencies have not been modified ..." >&2
@go mod verify

# Clean build directory
clean:
rm -rf $(BUILDDIR)/

# Phony targets
.PHONY: all build install clean
Loading
Loading