Rust GBT proof of concept

This commit is contained in:
Mononaut
2023-06-23 16:42:58 -04:00
parent 3d33233e51
commit 52bb8b4a4d
14 changed files with 943 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
{
"name": "gbt",
"version": "0.1.0",
"description": "An inefficient re-implementation of the getBlockTemplate algorithm in Rust",
"main": "index.node",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"test": "cargo test"
},
"author": "mononaut",
"devDependencies": {
"cargo-cp-artifact": "^0.1"
}
}