-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed CometBFT version to v0.34.29 and Added functionality to store…
… pods of evm-station Added some new features to support the creation and management of tracks, including the functionality to create "pods" (sets of X transactions), these data tracks can be accessed via port 26657.
- Loading branch information
0 parents
commit d2de20a
Showing
1,159 changed files
with
254,280 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
Language: Proto | ||
BasedOnStyle: Google | ||
IndentWidth: 2 | ||
ColumnLimit: 0 | ||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: true | ||
SpacesInSquareBrackets: true | ||
ReflowComments: true | ||
SortIncludes: true | ||
SortUsingDeclarations: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
build | ||
test/e2e/build | ||
test/e2e/networks | ||
test/logs | ||
test/p2p/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{sh,Makefile}] | ||
indent_style = tab | ||
|
||
[*.proto] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# CODEOWNERS: https://help.github.com/articles/about-codeowners/ | ||
|
||
# Everything goes through the following "global owners" by default. | ||
# Unless a later match takes precedence, these three will be | ||
# requested for review when someone opens a PR. | ||
# Note that the last matching pattern takes precedence, so | ||
# global owners are only requested if there isn't a more specific | ||
# codeowner specified below. For this reason, the global codeowners | ||
# are often repeated in package-level definitions. | ||
* @CometBFT/engineering | ||
|
||
/spec @CometBFT/research @CometBFT/engineering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us squash bugs! | ||
labels: bug, needs-triage | ||
--- | ||
<!-- | ||
Please fill in as much of the template below as you can. | ||
If you have general questions, please create a new discussion: | ||
https://github.com/cometbft/cometbft/discussions | ||
Be ready for followup questions, and please respond in a timely manner. We might | ||
ask you to provide additional logs and data (CometBFT & App). | ||
--> | ||
|
||
## Bug Report | ||
|
||
### Setup | ||
|
||
**CometBFT version** (use `cometbft version` or `git rev-parse --verify HEAD` if installed from source): | ||
|
||
**Have you tried the latest version**: yes/no | ||
|
||
**ABCI app** (name for built-in, URL for self-written if it's publicly available): | ||
|
||
**Environment**: | ||
- **OS** (e.g. from /etc/os-release): | ||
- **Install tools**: | ||
- **Others**: | ||
|
||
**node command runtime flags**: | ||
|
||
### Config | ||
|
||
<!-- | ||
You can paste only the changes you've made. | ||
--> | ||
|
||
### What happened? | ||
|
||
### What did you expect to happen? | ||
|
||
### How to reproduce it | ||
|
||
<!-- | ||
Provide a description here as minimally and precisely as possible as to how to | ||
reproduce the issue. Ideally only using our kvstore application, as debugging | ||
app chains is not within our team's scope. | ||
--> | ||
|
||
### Logs | ||
|
||
<!-- | ||
Paste a small part showing an error (< 10 lines) or link a pastebin, gist, etc. | ||
containing more of the log file). | ||
--> | ||
|
||
### `dump_consensus_state` output | ||
|
||
<!-- | ||
Please provide the output from the `http://<ip>:<port>/dump_consensus_state` RPC | ||
endpoint for consensus bugs. | ||
--> | ||
|
||
### Anything else we need to know | ||
|
||
<!-- | ||
Is there any additional information not covered by the other sections that would | ||
help us to triage/debug/fix this issue? | ||
--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Ask a question | ||
url: https://github.com/cometbft/cometbft/discussions | ||
about: Please ask and answer questions here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Feature Request | ||
about: Create a proposal to request a feature | ||
labels: enhancement, needs-triage | ||
--- | ||
|
||
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ | ||
v ✰ Thanks for opening an issue! ✰ | ||
v Before smashing the submit button please review the template. | ||
v Word of caution: poorly thought-out proposals may be rejected | ||
v without deliberation | ||
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> | ||
|
||
## Feature Request | ||
|
||
### Summary | ||
|
||
<!-- Short, concise description of the proposed feature --> | ||
|
||
### Problem Definition | ||
|
||
<!-- Why do we need this feature? | ||
What problems may be addressed by introducing this feature? | ||
What benefits does CometBFT stand to gain by including this feature? | ||
Are there any disadvantages of including this feature? --> | ||
|
||
### Proposal | ||
|
||
<!-- Detailed description of requirements of implementation --> | ||
|
||
____ | ||
|
||
#### For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Protocol Change Proposal | ||
about: Create a proposal to request a change to the protocol | ||
labels: protocol-change, needs-triage | ||
--- | ||
|
||
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ | ||
v ✰ Thanks for opening an issue! ✰ | ||
v Before smashing the submit button please review the template. | ||
v Word of caution: Under-specified proposals may be rejected summarily | ||
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> | ||
|
||
## Protocol Change Proposal | ||
|
||
### Summary | ||
|
||
<!-- Short, concise description of the proposed change --> | ||
|
||
### Problem Definition | ||
|
||
<!-- Why do we need this change? | ||
What problems may be addressed by introducing this change? | ||
What benefits does CometBFT stand to gain by including this change? | ||
Are there any disadvantages of including this change? --> | ||
|
||
### Proposal | ||
|
||
<!-- Detailed description of requirements of implementation --> | ||
|
||
____ | ||
|
||
#### For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## Description | ||
|
||
_Please add a description of the changes that this PR introduces and the files that | ||
are the most critical to review._ | ||
|
||
If this PR is non-trivial/large/complex, please ensure that you have either | ||
created an issue that the team's had a chance to respond to, or had some | ||
discussion with the team prior to submitting substantial pull requests. The team | ||
can be reached via GitHub Discussions or the Cosmos Network Discord server in | ||
the #cometbft channel. GitHub Discussions is preferred over Discord as it | ||
allows us to keep track of conversations topically. | ||
https://github.com/cometbft/cometbft/discussions | ||
|
||
If the work in this PR is not aligned with the team's current priorities, please | ||
be advised that it may take some time before it is merged - especially if it has | ||
not yet been discussed with the team. | ||
|
||
See the project board for the team's current priorities: | ||
https://github.com/orgs/cometbft/projects/1 | ||
|
||
--> | ||
|
||
--- | ||
|
||
#### PR checklist | ||
|
||
- [ ] Tests written/updated | ||
- [ ] Changelog entry added in `.changelog` (we use | ||
[unclog](https://github.com/informalsystems/unclog) to manage our changelog) | ||
- [ ] Updated relevant documentation (`docs/` or `spec/`) and code comments | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pullRequestOpened: | | ||
:wave: Thanks for creating a PR! | ||
Before we can merge this PR, please make sure that all the following items have been | ||
checked off. If any of the checklist items are not applicable, please leave them but | ||
write a little note why. | ||
- [ ] Wrote tests | ||
- [ ] Updated CHANGELOG_PENDING.md | ||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | ||
- [ ] Updated relevant documentation (`docs/`) and code comments | ||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | ||
- [ ] Applied Appropriate Labels | ||
Thank you for your contribution to CometBFT! :rocket: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
labels: needs-triage | ||
--- | ||
|
||
<!-- | ||
If you want to ask a general question, please create a new discussion instead of | ||
an issue: https://github.com/cometbft/cometbft/discussions | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# markdownlint configuration for Super-Linter | ||
# - https://github.com/DavidAnson/markdownlint | ||
# - https://github.com/github/super-linter | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# See https://github.com/DavidAnson/markdownlint#rules--aliases for rules | ||
MD007: {"indent": 4} | ||
MD013: false | ||
MD024: {siblings_only: true} | ||
MD025: false | ||
MD033: {no-inline-html: false} | ||
no-hard-tabs: false | ||
whitespace: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# Default rules for YAML linting from super-linter. | ||
# See: See https://yamllint.readthedocs.io/en/stable/rules.html | ||
extends: default | ||
rules: | ||
document-end: disable | ||
document-start: disable | ||
line-length: disable | ||
truthy: disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
queue_rules: | ||
- name: default | ||
conditions: | ||
- base=v0.34.x | ||
- label=S:automerge | ||
|
||
pull_request_rules: | ||
- name: Automerge to v0.34.x | ||
conditions: | ||
- base=v0.34.x | ||
- label=S:automerge | ||
actions: | ||
queue: | ||
method: squash | ||
name: default | ||
commit_message_template: | | ||
{{ title }} (#{{ number }}) | ||
{{ body }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Verify that generated code is up-to-date. | ||
# | ||
# Note that we run these checks regardless whether the input files have | ||
# changed, because generated code can change in response to toolchain updates | ||
# even if no files in the repository are modified. | ||
name: Check generated code | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- v0.34.x | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-mocks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.19" | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- name: "Check generated mocks" | ||
run: | | ||
set -euo pipefail | ||
make mockery | ||
if ! git diff --stat --exit-code ; then | ||
echo ">> ERROR:" | ||
echo ">>" | ||
echo ">> Generated mocks require update (either Mockery or source files may have changed)." | ||
echo ">> Ensure your tools are up-to-date, re-run 'make mockery' and update this PR." | ||
echo ">>" | ||
exit 1 | ||
fi | ||
check-proto: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.19' | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 # we need a .git directory to run git diff | ||
|
||
- name: "Check protobuf generated code" | ||
run: | | ||
set -euo pipefail | ||
make proto-gen | ||
if ! git diff --stat --exit-code ; then | ||
echo ">> ERROR:" | ||
echo ">>" | ||
echo ">> Protobuf generated code requires update (either tools or .proto files may have changed)." | ||
echo ">> Ensure your tools are up-to-date, re-run 'make proto-gen' and update this PR." | ||
echo ">>" | ||
git diff | ||
exit 1 | ||
fi |
Oops, something went wrong.