Skip to content

Commit

Permalink
feat: refactor app struct (#57)
Browse files Browse the repository at this point in the history
* refactor app struct

* clear imports

* clear imports

* fix comments and change panic to exit

* fix test

* add error handling for indexer

* update swagger & update import

* use latest cometbft

* use latest go
  • Loading branch information
beer-1 authored Aug 14, 2024
1 parent 394356a commit 56fac53
Show file tree
Hide file tree
Showing 20 changed files with 2,833 additions and 1,276 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-darwin-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.4"
go-version: "1.22.5"

- name: Set environment variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-darwin-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.4"
go-version: "1.22.5"
- name: Set environment variables
run: |
MINIMOVE_NETWORK_NAME="minimove-1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.4"
go-version: "1.22.5"

- name: Set environment variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
ls -l
file minimove_${VERSION}_Linux_${ARCH_NAME}.tar.gz
# remove builder
# Remove builder
docker buildx rm arm64-builder
- name: List files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
go.mod
go.sum
# install golangci-lint
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@${{ env.GOLANGCI_LINT_VERSION }}
- name: run go linters (long)
if: env.GIT_DIFF
id: lint_long
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

MiniMove is an optimistic rollup consumer chain powered by MoveVM. MiniMove is designed to simplify the process of bootstrapping an L2 network. The main advantage of using MiniMove is that the users can leverage the OPinit stack for enhanced security and utilize all the Initia ecosystem tooling from day one, without the need to prepare a validator group or build the users' own ecosystem tools.

- https://github.com/initia-labs/move
- <https://github.com/initia-labs/move>

## Prerequisites

- Go v1.22.2+
- Go v1.22.5+

## Getting Started

Expand All @@ -27,5 +27,3 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
## License

This project is licensed under the [BSL License](LICENSE).


Loading

0 comments on commit 56fac53

Please sign in to comment.