Skip to content

Commit

Permalink
Merge branch 'master' into stan/28-transaction-processing
Browse files Browse the repository at this point in the history
  • Loading branch information
sczembor authored Nov 26, 2024
2 parents d8de8ba + 690f5f9 commit 0579666
Show file tree
Hide file tree
Showing 20 changed files with 273 additions and 350 deletions.
13 changes: 11 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
NATIVE_RPC=http://localhost:26657
NATIVE_GRPC=127.0.0.1:9090
LOG_FILE_PATH="" # If empty, logs to STDOUT
LOG_LEVEL="debug"

NATIVE_RPC=http://localhost:26657
NATIVE_GRPC=127.0.0.1:9090

IKA_RPC=http://127.0.0.1:9000
IKA_SIGNER_MNEMONIC=""
IKA_GAS_ACC=""
IKA_GAS_BUDGET=""
IKA_NATIVE_LC_PACKAGE=""
IKA_NATIVE_LC_MODULE=""
IKA_NATIVE_LC_FUNCTION=""

BTC_RPC_USER="user"
BTC_RPC_PASS="pass"
BTC_RPC="localhost:18334"
15 changes: 10 additions & 5 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ about: Create a proposal to request a feature

## Summary

## Problem Definition

<!-- Why do we need this feature?
What problems may be addressed by introducing this feature?
What benefits does Tendermint stand to gain by including this feature?
Are there any disadvantages of including this feature? -->

## Context

#### Why do we need this feature? What problems may be addressed by introducing this feature?

#### What are the benefits by including this feature?

#### Are there any disadvantages of including this feature?

## Proposal



---

## For Admin Use
Expand Down
13 changes: 12 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

closes: #XXXX
Closes: #XXXX

---

Expand All @@ -14,6 +14,17 @@ please add links to any relevant follow up issues._
I have...

- [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
<!-- * `feat`: A new feature
* `fix`: A bug fix
* `docs`: Documentation only changes
* `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
* `refactor`: A code change that neither fixes a bug nor adds a feature
* `perf`: A code change that improves performance
* `test`: Adding missing tests or correcting existing tests
* `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
* `ci`: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
* `chore`: Other changes that don't modify src or test files
* `revert`: Reverts a previous commit -->
- [ ] added `!` to the type prefix if API or client breaking change
- [ ] added appropriate labels to the PR
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/umee-network/umee/blob/main/CONTRIBUTING.md#pr-targeting))
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
id: govulncheck
if: env.GIT_DIFF
with:
go-version-input: 1.22
go-version-input: 1.23
go-package: ./...
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/setup-go@v5
if: env.GIT_DIFF
with:
go-version: "1.22"
go-version: "1.23"
cache: true

- name: golangci-lint main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/setup-go@v5
if: env.GIT_DIFF
with:
go-version: "1.22"
go-version: "1.23"
cache: true
- name: Test and Create Coverage Report
if: env.GIT_DIFF
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# - uses: actions/setup-go@v5
# if: env.GIT_DIFF
# with:
# go-version: "1.22"
# go-version: "1.23"
# cache: true

# - name: Test E2E
Expand Down
132 changes: 0 additions & 132 deletions CODE_OF_CONDUCT.md

This file was deleted.

101 changes: 0 additions & 101 deletions CONTRIBUTING.md

This file was deleted.

6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ out:
build: out .git/hooks/pre-commit
go build -o ./out ./cmd/*

run:
start:
@if [ ! -f .env ]; then echo "Create .env file by copying and updating .env.example"; exit 1; fi
@./out/rly-pera start --block 8713586
@./out/native-ika start --block 8713586

clean:
rm -rf out
Expand All @@ -39,7 +39,7 @@ lint-fix-go-all:
@gofmt -w -s -l .


.PHONY: build run clean setup
.PHONY: build start clean setup
.PHONY: lint lint-all lint-fix-all lint-fix-go-all

###############################################################################
Expand Down
Loading

0 comments on commit 0579666

Please sign in to comment.