-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit faaf0fb
Showing
30 changed files
with
12,215 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
PREV_MINERID_PK=cRKcg5RGqyFUtGe2o1hPPn2CHYhBxQhRUNSCsP3hEn9ak7tv9Spr | ||
MINERID_PK=cRKcg5RGqyFUtGe2o1hPPn2CHYhBxQhRUNSCsP3hEn9ak7tv9Spr | ||
VCTX=09aa21bb5484c500a3bb40b0df7644e794c6c9ab35e7db151d85992a59423194 | ||
MINERID_NAME=CylonJager | ||
MINERID_EMAIL=n/a | ||
MINERID_MAPI=api.demo.com |
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,21 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true | ||
}, | ||
"extends": [ | ||
"airbnb-base" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 12 | ||
}, | ||
"rules": { | ||
"func-names": ["error", "never"], | ||
"no-bitwise": "off", | ||
"no-console": "off", | ||
"no-param-reassign": "off", | ||
"no-underscore-dangle": "off", | ||
"comma-dangle": ["error", "only-multiline"] | ||
} | ||
} |
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,24 @@ | ||
name: Node.js CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x, 14.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm test | ||
env: | ||
CI: 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 @@ | ||
node_modules/ | ||
.env | ||
.nyc_output/ | ||
coverage/ | ||
npm-debug.log |
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 @@ | ||
v12.18.4 |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!-- PROJECT SHIELDS --> | ||
|
||
<div align="center" style="margin:15px 0"> | ||
<a href="#"> | ||
<img alt="Status" src="https://img.shields.io/badge/Status-pre--alpha-white?style=for-the-badge&logo=Github" /> | ||
</a> | ||
<a href="#"> | ||
<img alt="GNU License" src="https://img.shields.io/badge/License-GPL_3.0-informational?style=for-the-badge&logo=GNU" /> | ||
</a> | ||
</div> | ||
|
||
<!-- PROJECT TL;DR --> | ||
<br /> | ||
<p align="center" style="padding:0px 0"> | ||
<a href="#"> | ||
<img src="https://i.imgur.com/Z3PyLwQ.png" height="70"></img> | ||
</a> | ||
</p> | ||
|
||
<!-- white/black logo https://i.imgur.com/zBDssBR.jpg --> | ||
|
||
<h2 align="center">Carrot Pool Stratum</h2> | ||
|
||
<p align="center"> | ||
High-performance, SHA-256 Stratum Protocol Server | ||
</p> |
Oops, something went wrong.