Skip to content

Commit 26d8565

Browse files
committed
Parallax v0.1.0
0 parents  commit 26d8565

File tree

1,793 files changed

+669928
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,793 files changed

+669928
-0
lines changed

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/*_test.go
2+
3+
build/_workspace
4+
build/_bin
5+
tests/testdata

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
*.sol linguist-language=Solidity

.github/CONTRIBUTING.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Contributing
2+
3+
Thank you for considering to help out with the source code! We welcome
4+
contributions from anyone on the internet, and are grateful for even the
5+
smallest of fixes!
6+
7+
If you'd like to contribute to Parallax, please fork, fix, commit and send a
8+
pull request for the maintainers to review and merge into the main code base. If
9+
you wish to submit more complex changes though, please check up with the core
10+
devs first on [our gitter channel](https://matrix.to/#/#parallaxchain:gitter.im) to
11+
ensure those changes are in line with the general philosophy of the project
12+
and/or get some early feedback which can make both your efforts much lighter as
13+
well as our review and merge procedures quick and simple.
14+
15+
## Coding guidelines
16+
17+
Please make sure your contributions adhere to our coding guidelines:
18+
19+
* Code must adhere to the official Go
20+
[formatting](https://golang.org/doc/effective_go.html#formatting) guidelines
21+
(i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).
22+
* Code must be documented adhering to the official Go
23+
[commentary](https://golang.org/doc/effective_go.html#commentary) guidelines.
24+
* Pull requests need to be based on and opened against the `main` branch.
25+
* Commit messages should be prefixed with the package(s) they modify.
26+
* E.g. "prlx, rpc: make trace configs optional"
27+
28+
## Can I have feature X
29+
30+
Before you submit a feature request, please check and make sure that it isn't
31+
possible through some other means. The JavaScript-enabled console is a powerful
32+
feature in the right hands.

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Report a bug
3+
about: Something with Parallax is not working as expected
4+
title: ''
5+
labels: 'type:bug'
6+
assignees: ''
7+
---
8+
9+
#### System information
10+
11+
Prlx version: `prlx version`
12+
OS & Version: Windows/Linux/OSX
13+
Commit hash : (if `develop`)
14+
15+
#### Expected behaviour
16+
17+
#### Actual behaviour
18+
19+
#### Steps to reproduce the behaviour
20+
21+
#### Backtrace
22+
23+
````
24+
[backtrace]
25+
````
26+
27+
When submitting logs: please submit them as text and not screenshots.
28+

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Request a feature
3+
about: Report a missing feature - e.g. as a step before submitting a PR
4+
title: ''
5+
labels: 'type:feature'
6+
assignees: ''
7+
---
8+
9+
# Rationale
10+
11+
Why should this feature exist?
12+
What are the use-cases?
13+
14+
# Implementation
15+
16+
Do you have ideas regarding the implementation of this feature?
17+
Are you willing to implement this feature?

.github/ISSUE_TEMPLATE/question.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Ask a question
3+
about: Something is unclear
4+
title: ''
5+
labels: 'type:docs'
6+
assignees: ''
7+
---
8+
9+
This should only be used in very rare cases e.g. if you are not 100% sure if something is a bug or asking a question that leads to improving the documentation. For general questions please use [discord](https://discord.gg/nthXNEv) or the Ethereum stack exchange at https://ethereum.stackexchange.com.

.github/no-response.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Number of days of inactivity before an Issue is closed for lack of response
2+
daysUntilClose: 30
3+
# Label requiring a response
4+
responseRequiredLabel: "need:more-information"
5+
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
6+
closeComment: >
7+
This issue has been automatically closed because there has been no response
8+
to our request for more information from the original author. With only the
9+
information that is currently in the issue, we don't have enough information
10+
to take action. Please reach out if you have more relevant information or
11+
answers to our questions so that we can investigate further.

.github/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 366
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 42
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: "status:inactive"
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
/tmp
8+
*/**/*un~
9+
*/**/*.test
10+
*un~
11+
.DS_Store
12+
*/**/.DS_Store
13+
.prltest
14+
*/**/*tx_database*
15+
*/**/*dapps*
16+
build/_vendor/pkg
17+
18+
#*
19+
.#*
20+
*#
21+
*~
22+
.project
23+
.settings
24+
.env
25+
26+
# used by the Makefile
27+
/build/ci
28+
/build/_workspace/
29+
/build/cache/
30+
/build/bin/
31+
/build/cross/
32+
/build/package/
33+
/prlx*.zip
34+
35+
# travis
36+
profile.tmp
37+
profile.cov
38+
39+
# IdeaIDE
40+
.idea
41+
42+
# VS Code
43+
.vscode
44+
45+
# dashboard
46+
/dashboard/assets/flow-typed
47+
/dashboard/assets/node_modules
48+
/dashboard/assets/stats.json
49+
/dashboard/assets/bundle.js
50+
/dashboard/assets/bundle.js.map
51+
/dashboard/assets/package-lock.json
52+
53+
**/yarn-error.log

.gitmodules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[submodule "tests"]
2+
path = tests/testdata
3+
url = https://github.com/ethereum/tests
4+
shallow = true
5+
[submodule "evm-benchmarks"]
6+
path = tests/evm-benchmarks
7+
url = https://github.com/ipsilon/evm-benchmarks
8+
shallow = true

0 commit comments

Comments
 (0)