Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brianvh committed Jul 15, 2021
0 parents commit faaf0fb
Show file tree
Hide file tree
Showing 30 changed files with 12,215 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .env.sample
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
21 changes: 21 additions & 0 deletions .eslintrc.json
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"]
}
}
24 changes: 24 additions & 0 deletions .github/workflows/node.js.yml
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
.env
.nyc_output/
coverage/
npm-debug.log
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v12.18.4
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions README.md
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>
Loading

0 comments on commit faaf0fb

Please sign in to comment.