-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into state-sync-header
- Loading branch information
Showing
600 changed files
with
28,154 additions
and
12,783 deletions.
There are no files selected for viewing
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
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,96 @@ | ||
name: Node Issue | ||
description: Issue while running a node | ||
title: "Node Issue: " | ||
labels: ["Node", "community", "investigation required"] | ||
assignees: | ||
- VanBarbascu | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Before you go ahead, please make sure that the issue has not been reported already. | ||
Please, follow steps below to help us resolve your issue. | ||
In scripts below we assume that `$NEARD` environmental variable contains path to your neard binary, | ||
and `$NEAR_HOME` variable contains path to your near home. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: node-type | ||
attributes: | ||
label: Node type | ||
description: What type of node are you running? | ||
options: | ||
- Top 100 Validator | ||
- Non-Top 100 Validator | ||
- RPC | ||
- Split Storage Archival | ||
- Legacy Archival (Deprecated) | ||
default: 2 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: network | ||
attributes: | ||
label: Which network are you running? | ||
description: Pick the network | ||
options: | ||
- mainnet | ||
- testnet | ||
- other (specify below) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Describe your issue with running a near node. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of neard are you running? Please, provide output of `$NEARD --version`. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. | ||
render: shell | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: block-misc | ||
attributes: | ||
label: Node head info | ||
description: Please, provide full output of `RUST_LOG=warn $NEARD --home $NEAR_HOME --unsafe-fast-startup view-state scan-db-column --column BlockMisc`. | ||
render: shell | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: neard-history | ||
attributes: | ||
label: Node upgrade history | ||
description: When did you upgrade to current version? Please, try to provide date and time. What version were you running before that? | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: db-history | ||
attributes: | ||
label: DB reset history | ||
description: When was the last time you restarted your DB from snapshot? | ||
render: shell | ||
validations: | ||
required: 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,68 @@ | ||
name: RPC Issue | ||
description: Issue while using public RPC service | ||
title: "RPC Issue: " | ||
labels: ["A-RPC", "community", "investigation required"] | ||
assignees: | ||
- khorolets | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Before you go ahead, please make sure that the issue has not been reported already. | ||
Please, follow steps below to help us resolve your issue. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: network | ||
attributes: | ||
label: Which network are you using? | ||
description: Pick the network | ||
options: | ||
- mainnet | ||
- testnet | ||
- other (specify below) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: rpc-url | ||
attributes: | ||
label: RPC URL | ||
description: Provide the RPC URL you are using | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: rpc-request | ||
attributes: | ||
label: RPC Request | ||
description: Provide the RPC request | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-result | ||
attributes: | ||
label: Expected result | ||
description: What is the expected result of the request? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-result | ||
attributes: | ||
label: Actual result | ||
description: Provide the actual response | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: is-archival | ||
attributes: | ||
label: Is it an archival request? | ||
description: The requested data is older than 3 days | ||
options: | ||
- label: The result contains archival 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,48 @@ | ||
name: Contract runtime Issue | ||
description: Issue while developing a contract | ||
title: "Contract Runtime Issue: " | ||
labels: ["T-contract-runtime", "community", "investigation required"] | ||
assignees: | ||
- akhi3030 | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Before you go ahead, please make sure that the issue has not been reported already. | ||
Please, follow steps below to help us resolve your issue. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: network | ||
attributes: | ||
label: Which network are you using? | ||
description: Pick the network | ||
options: | ||
- mainnet | ||
- testnet | ||
- other (specify below) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Describe your issue with the contract | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. | ||
render: shell | ||
validations: | ||
required: 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,50 @@ | ||
name: Feature Request | ||
description: Any ideas how to improve nearcore | ||
title: "Feature: " | ||
labels: ["community"] | ||
assignees: | ||
- walnut-the-cat | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
Before you go ahead, please make sure that the feature request has not been reported already. | ||
Please, follow steps below to explain the feature request better. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: feature-request | ||
attributes: | ||
label: Feature Request | ||
description: Describe your feature request | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: beneficiary | ||
attributes: | ||
label: Beneficiary | ||
description: Who is the main beneficiary of this feature? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: priority | ||
attributes: | ||
label: Priority | ||
description: How important this feature is? Why should developers prioritize this? | ||
render: shell | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: ready-to-contribute | ||
attributes: | ||
label: Contributing | ||
description: Are you interested in implementing this feature? | ||
options: | ||
- label: Yes, I am interested |
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,48 @@ | ||
name: Bug Report | ||
description: General bug report. Use this only if it does not fit into any of the categories above. | ||
title: "Bug: " | ||
labels: ["community", "investigation required"] | ||
assignees: | ||
- telezhnaya | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Before you go ahead, please make sure that the issue has not been reported already. | ||
Please, follow steps below to help us resolve your issue. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: network | ||
attributes: | ||
label: Which network are you using? | ||
description: Pick the network | ||
options: | ||
- mainnet | ||
- testnet | ||
- other (specify below) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Describe your issue with running a near node. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. | ||
render: shell | ||
validations: | ||
required: 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,9 @@ | ||
name: Internal | ||
description: Template for nearcore employees only | ||
body: | ||
- type: textarea | ||
id: content | ||
attributes: | ||
label: Description | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.