@mcaptcha/pow_sha256-polyfill
Version:
<div align="center">
14 lines (13 loc) • 328 B
TypeScript
export declare const SALT = "13b9bb30d3eef8ed0fd295b9e0df87";
export declare const DIFFICULTY = 50000;
export declare type Work = {
result: BigInt;
nonce: number;
};
export declare type TestCase = {
hash: number[];
phrase: string;
difficulty: BigInt;
pow: Work;
};
export declare const DATA: TestCase[];