]> zoso.dev Git - libnemo.git/commitdiff
Simplify imports with additional path mappings. Remove deprecated worker code from...
authorChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 15:30:56 +0000 (07:30 -0800)
committerChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 15:30:56 +0000 (07:30 -0800)
12 files changed:
package.json
src/lib/account.ts
src/lib/block.ts
src/lib/nano-pow/classes/gl.ts
src/lib/nano-pow/classes/gpu.ts
src/lib/nano-pow/classes/index.ts [new file with mode: 0644]
src/lib/nano-pow/index.ts
src/lib/nano-pow/shaders/index.ts
src/lib/wallet.ts
src/lib/workers/index.ts [moved from src/lib/workers.ts with 82% similarity]
src/lib/workers/nano-pow.ts
src/main.ts

index cfa32f87cc8750115ddfe80fdbd263c8741fd67e..2620686833098f130c0626f39487e4e568e40de2 100644 (file)
                "#~/*": "./src/lib/*",
                "#dist/*": "./dist/*",
                "#test/*": "./test/*",
-               "#nano-pow/*": "./src/lib/nano-pow/*"
+               "#nano-pow": "./src/lib/nano-pow/index.js",
+               "#nano-pow/*": "./src/lib/nano-pow/*",
+               "#workers": "./src/lib/workers/index.js",
+               "#workers/*": "./src/lib/workers/*"
        },
        "optionalDependencies": {
                "@ledgerhq/hw-transport-web-ble": "^6.29.4",
index 001208c98d7dfaf71c3b4f7a36df04dba31cfd81..58570ef516ffb5eecf784dd7edfdfba960bd6e72 100644 (file)
@@ -6,7 +6,7 @@ import { ACCOUNT_KEY_LENGTH, ALPHABET, PREFIX, PREFIX_LEGACY } from './constants
 import { base32, bytes, hex } from './convert.js'\r
 import { Rpc } from './rpc.js'\r
 import { Safe } from './safe.js'\r
-import { NanoNaCl } from './workers/nano-nacl.js'\r
+import { NanoNaCl } from '#workers/nano-nacl.js'\r
 \r
 /**\r
 * Represents a single Nano address and the associated public key. To include the\r
index 7d669d51534d8f697b6e8faa9d60a6150df4e7c9..d32c5e19547aee901cf64df554737b24d19cf843 100644 (file)
@@ -5,10 +5,10 @@ import { BURN_ADDRESS, PREAMBLE, THRESHOLD_RECEIVE, THRESHOLD_SEND } from './con
 import { Account } from './account.js'
 import { Blake2b } from './blake2b.js'
 import { dec, hex } from './convert.js'
-import { NanoNaCl } from './workers/nano-nacl.js'
+import { NanoNaCl } from '#workers/nano-nacl.js'
 import { Pool } from './pool.js'
 import { Rpc } from './rpc.js'
-import { NanoPow } from './workers.js'
+import { NanoPow } from '#workers'
 
 /**
 * Represents a block as defined by the Nano cryptocurrency protocol. The Block
index 055dc14c7f21e6ca63397e58ffd142034f1fb8cb..34edf17ca5c60cdc49bb95bd40c9cb02fab0d397 100644 (file)
@@ -2,33 +2,9 @@
 // SPDX-License-Identifier: GPL-3.0-or-later
 // Based on nano-webgl-pow by Ben Green (numtel) <ben@latenightsketches.com>
 // https://github.com/numtel/nano-webgl-pow
-// import { WorkerInterface } from '#~/pool.js'
-import { NanoPowGlFragmentShader, NanoPowGlVertexShader } from '#nano-pow/shaders/index.js'
-
-// export class NanoPowGl extends WorkerInterface {
-//     static {
-//             NanoPowGl.listen()
-//     }
-//     /**
-//     * Calculates proof-of-work as described by the Nano cryptocurrency protocol.
-//     *
-//     * @param {any[]} data - Array of hashes and minimum thresholds
-//     * @returns Promise for proof-of-work attached to original array objects
-//     */
-//     static async work (data: any[]): Promise<any[]> {
-//             return new Promise(async (resolve, reject): Promise<void> => {
-//                     for (const d of data) {
-//                             try {
-//                                     d.work = await this.search(d.hash, d.threshold)
-//                             } catch (err) {
-//                                     reject(err)
-//                             }
-//                     }
-//                     resolve(data)
-//             })
-//     }
-export class NanoPowGl {
+import { NanoPowGlFragmentShader, NanoPowGlVertexShader } from '../shaders/index.js'
 
+export class NanoPowGl {
        /** Used to set canvas size. Must be a multiple of 256. */
        static #WORKLOAD: number = 256 * Math.max(1, Math.floor(navigator.hardwareConcurrency))
 
@@ -50,17 +26,17 @@ export class NanoPowGl {
        static #workBuffer: WebGLBuffer | null
        static #query: WebGLQuery | null
        static #pixels: Uint8Array
-       // Vertex Positions, 2 triangles
+       /**Vertex Positions, 2 triangles */
        static #positions = new Float32Array([
                -1, -1, 0, -1, 1, 0, 1, 1, 0,
                1, -1, 0, 1, 1, 0, -1, -1, 0
        ])
-       // Texture Positions
+       /** Texture Positions */
        static #uvPosArray = new Float32Array([
                1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1
        ])
 
-       // Compile
+       /** Compile */
        static {
                this.#gl = new OffscreenCanvas(this.#WORKLOAD, this.#WORKLOAD).getContext('webgl2')
                if (this.#gl == null) throw new Error('WebGL 2 is required')
@@ -89,7 +65,7 @@ export class NanoPowGl {
                if (!this.#gl.getProgramParameter(this.#program, this.#gl.LINK_STATUS))
                        throw new Error(this.#gl.getProgramInfoLog(this.#program) ?? `Failed to link program`)
 
-               // Construct simple 2D geometry
+               /** Construct simple 2D geometry */
                this.#gl.useProgram(this.#program)
                const triangleArray = this.#gl.createVertexArray()
                this.#gl.bindVertexArray(triangleArray)
@@ -136,7 +112,7 @@ export class NanoPowGl {
                if (typeof threshold !== 'number') throw new TypeError(`Invalid threshold ${threshold}`)
                if (this.#gl == null) throw new Error('WebGL 2 is required')
 
-               // Set up uniform buffer object
+               /** Set up uniform buffer object */
                const uboView = new DataView(new ArrayBuffer(144))
                for (let i = 0; i < 64; i += 8) {
                        const uint32 = hash.slice(i, i + 8)
@@ -148,7 +124,7 @@ export class NanoPowGl {
                NanoPowGl.#gl.bufferSubData(NanoPowGl.#gl.UNIFORM_BUFFER, 0, uboView)
                NanoPowGl.#gl.bindBuffer(NanoPowGl.#gl.UNIFORM_BUFFER, null)
 
-               // Start drawing to calculate one nonce per pixel
+               /** Start drawing to calculate one nonce per pixel */
                let nonce = null
                const work = new Uint8Array(8)
                while (nonce == null) {
@@ -166,7 +142,7 @@ export class NanoPowGl {
                if (this.#workBuffer == null) throw new Error('Work buffer is required to draw')
                this.#gl.clear(this.#gl.COLOR_BUFFER_BIT)
 
-               // Upload work buffer
+               /** Upload work buffer */
                crypto.getRandomValues(work)
                this.#gl.bindBuffer(this.#gl.UNIFORM_BUFFER, this.#workBuffer)
                this.#gl.bufferSubData(this.#gl.UNIFORM_BUFFER, 0, Uint32Array.from(work))
@@ -182,7 +158,7 @@ export class NanoPowGl {
                if (this.#gl.getQueryParameter(this.#query, this.#gl.QUERY_RESULT_AVAILABLE)) {
                        return this.#gl.getQueryParameter(this.#query, this.#gl.QUERY_RESULT)
                }
-               // Query result not yet available, check again in the next frame
+               /** Query result not yet available, check again in the next frame */
                return new Promise((resolve, reject): void => {
                        try {
                                requestAnimationFrame(async (): Promise<void> => {
@@ -208,7 +184,7 @@ export class NanoPowGl {
                this.#gl.readPixels(0, 0, this.#gl.drawingBufferWidth, this.#gl.drawingBufferHeight, this.#gl.RGBA, this.#gl.UNSIGNED_BYTE, this.#pixels)
                for (let i = 0; i < this.#pixels.length; i += 4) {
                        if (this.#pixels[i] !== 0) {
-                               // Return the work value with the custom bits
+                               /** Return the work value with the custom bits */
                                const hex = this.#hexify(work.subarray(4, 8)) + this.#hexify([
                                        this.#pixels[i + 2],
                                        this.#pixels[i + 3],
@@ -222,13 +198,6 @@ export class NanoPowGl {
        }
 }
 
-// export default `
-//     const NanoPowGlFragmentShader = ${NanoPowGlFragmentShader}
-//     const NanoPowGlVertexShader = ${NanoPowGlVertexShader}
-//     // const WorkerInterface = ${WorkerInterface}
-//     const PowGl = ${NanoPowGl}
-// `
-
 export default `
        const NanoPowGlFragmentShader = \`${NanoPowGlFragmentShader}\`
        const NanoPowGlVertexShader = \`${NanoPowGlVertexShader}\`
index b22500781c773e97ac2d165e98d98a8ceda3d641..1478673d200774333ac0bff2043a4f18b273d855 100644 (file)
@@ -2,36 +2,11 @@
 // SPDX-License-Identifier: GPL-3.0-or-later
 // BLAKE2b hashing implementation derived from nano-webgl-pow by Ben Green <ben@latenightsketches.com> (https://github.com/numtel/nano-webgl-pow)
 /// <reference types="@webgpu/types" />
-// import { WorkerInterface } from '#~/pool.js'
-import { NanoPowGpuComputeShader } from '#nano-pow/shaders/index.js'
+import { NanoPowGpuComputeShader } from '../shaders/index.js'
 
 /**
 * Nano proof-of-work using WebGPU.
 */
-// export class NanoPowGpu extends WorkerInterface {
-//     static {
-//             NanoPowGpu.listen()
-//     }
-
-//     /**
-//     * Calculates proof-of-work as described by the Nano cryptocurrency protocol.
-//     *
-//     * @param {any[]} data - Array of hashes and minimum thresholds
-//     * @returns Promise for proof-of-work attached to original array objects
-//     */
-//     static async work (data: any[]): Promise<any[]> {
-//             return new Promise(async (resolve, reject): Promise<void> => {
-//                     for (const d of data) {
-//                             try {
-//                                     d.work = await this.search(d.hash, d.threshold)
-//                             } catch (err) {
-//                                     reject(err)
-//                             }
-//                     }
-//                     resolve(data)
-//             })
-//     }
-// */
 export class NanoPowGpu {
 
        // Initialize WebGPU
@@ -212,12 +187,6 @@ export class NanoPowGpu {
        }
 }
 
-// export default `
-//     const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
-//     const WorkerInterface = ${WorkerInterface}
-//     const NanoPowGpu = ${NanoPowGpu}
-// `
-
 export default `
        const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
        const NanoPowGpu = ${NanoPowGpu}
diff --git a/src/lib/nano-pow/classes/index.ts b/src/lib/nano-pow/classes/index.ts
new file mode 100644 (file)
index 0000000..b7298fa
--- /dev/null
@@ -0,0 +1,7 @@
+import { NanoPowGl } from "./gl"
+import { NanoPowGpu } from "./gpu"
+
+export {
+       NanoPowGl,
+       NanoPowGpu
+}
index bc02f2d8941f99510defd5ad7e974401ca070783..3e00b77d515e005cd5ec7add78285aa08ef831db 100644 (file)
@@ -1,4 +1,18 @@
-import { NanoPowGl } from "./classes/gl"
-import { NanoPowGpu } from "./classes/gpu"
+import {
+       NanoPowGpuComputeShader,
+       NanoPowGlFragmentShader,
+       NanoPowGlVertexShader
+} from "./shaders"
 
-export { NanoPowGl, NanoPowGpu }
+import {
+       NanoPowGl,
+       NanoPowGpu
+} from "./classes/"
+
+export {
+       NanoPowGpuComputeShader,
+       NanoPowGlFragmentShader,
+       NanoPowGlVertexShader,
+       NanoPowGl,
+       NanoPowGpu
+}
index 6f6ed1955507a056d9819527ffa01348c374b1fc..962926147c0b1f910f0648cf9aa21a01ded458ee 100644 (file)
@@ -2,4 +2,8 @@ import { NanoPowGpuComputeShader } from "./gpu-compute"
 import { NanoPowGlFragmentShader } from "./gl-fragment"
 import { NanoPowGlVertexShader } from "./gl-vertex"
 
-export { NanoPowGpuComputeShader, NanoPowGlFragmentShader, NanoPowGlVertexShader }
+export {
+       NanoPowGpuComputeShader,
+       NanoPowGlFragmentShader,
+       NanoPowGlVertexShader
+}
index 33ca4c39be45da95f0fc6018e7f1630a9b71bfca..e1f891086fb95978d4b811b189a35f40f40b6764 100644 (file)
@@ -9,7 +9,7 @@ import { Entropy } from './entropy.js'
 import { Pool } from './pool.js'\r
 import { Rpc } from './rpc.js'\r
 import { Safe } from './safe.js'\r
-import { Bip44Ckd, NanoNaCl } from './workers.js'\r
+import { Bip44Ckd, NanoNaCl } from '#workers'\r
 import type { Ledger } from './ledger.js'\r
 \r
 type KeyPair = {\r
similarity index 82%
rename from src/lib/workers.ts
rename to src/lib/workers/index.ts
index f91e41e242b1f52cc897a282db36fb3161e4eff5..bdb75d9ccf6595244e2ec6c538f72977d21d50a6 100644 (file)
@@ -3,5 +3,9 @@
 import { default as Bip44Ckd } from '#~/workers/bip44-ckd.js'
 import { default as NanoNaCl } from '#~/workers/nano-nacl.js'
 import { default as NanoPow } from '#~/workers/nano-pow.js'
-console.log(NanoPow)
-export { Bip44Ckd, NanoNaCl, NanoPow }
+
+export {
+       Bip44Ckd,
+       NanoNaCl,
+       NanoPow
+}
index 49235f4d01b97a88234d3448eec48938c4d614b4..14e0b29a8b994bab8548533f2909b853e7e7b551 100644 (file)
@@ -2,10 +2,10 @@
 // SPDX-License-Identifier: GPL-3.0-or-later
 import { WorkerInterface } from '#~/pool.js'
 import { NanoPowGpuComputeShader, NanoPowGlFragmentShader, NanoPowGlVertexShader } from '#nano-pow/shaders/index.js'
-import { NanoPowGl, NanoPowGpu } from '#nano-pow/index.js'
+import { NanoPowGl, NanoPowGpu } from '#nano-pow/classes/index.js'
 
 /**
-* Nano proof-of-work using WebGPU.
+* Nano proof-of-work using WebGPU and Web Workers.
 */
 export class NanoPow extends WorkerInterface {
        static {
index 163c934bfdd4a3fe823a0d46de8026004e351f1b..41c393d4f87600d264dd9d01242b314cf1df230c 100644 (file)
@@ -4,7 +4,7 @@
 import { Account } from './lib/account.js'
 import { Blake2b } from './lib/blake2b.js'
 import { SendBlock, ReceiveBlock, ChangeBlock } from './lib/block.js'
-import { NanoPowGl, NanoPowGpu } from '#nano-pow/index.js'
+import { NanoPowGl, NanoPowGpu } from '#nano-pow'
 import { Rpc } from './lib/rpc.js'
 import { Rolodex } from './lib/rolodex.js'
 import { Safe } from './lib/safe.js'