8 个版本 (4 个稳定版本)
新 2.1.0 | 2024 年 8 月 23 日 |
---|---|
2.0.1 | 2024 年 8 月 21 日 |
2.0.0-rc3 | 2024 年 7 月 16 日 |
1.0.0 | 2024 年 7 月 31 日 |
0.2.0 | 2024 年 7 月 2 日 |
#51 in 神奇豆子
每月下载量 390
在 2 crates 中使用
12KB
191 行
Drillx
Drillx 是基于智能合约或程序的加密资产挖矿的工作量证明算法。
摘要
Drillx 基于 Equix,一个友好的 CPU 客户端难题,旨在保护 Tor 防止 DDoS 攻击。Equix 本身是 Equihash 的一个变种,一个具有便宜验证的非对称工作量证明函数。Drillx 在 Equix 上添加了 Blake3 哈希步骤,以确保难度分布为 p(Z) = 2^-Z
,其中 Z
是哈希的前导零的数量。挑战 C
假设是一个由最近的 Solana blockhash 种子生成的安全生成的 256 位哈希。矿工们竞争找到产生目标难度的 64 位随机数 N
。解决方案必须以 (E, N)
的形式呈现,其中 E = Equix(C, N)
。难度是从 Blake3(E', N)
计算的,其中 E'
是 Equix 证明,按字典顺序排序以防止可变。由于 E
可以在链上高效验证,且 Blake3 作为 Solana 系统调用可用,Drillx 解决方案可以轻松地适应单个 Solana 事务。
用法
矿工可以遍历非随机数以找到满足其目标难度的哈希。
use drillx::{equix::SolverMemory, Solution};
fn main() {
let challenge = [255; 32]; // Should be provided by a program
let target = 8;
let mut memory = SolverMemory::new();
for nonce in 0..u64::MAX {
let hx = drillx::hash_with_memory(&mut memory, &challenge, &nonce.to_le_bytes());
if hx.difficuty() >= target {
println!("Solution: {:?}", Solution::new(hx.d, nonce));
return
}
}
}
智能合约可以验证解决方案并使用难度发放代币奖励。
use drillx::Solution;
fn verify(solution: Solution) {
let challenge = [255; 32]; // Fetch from state
let target = 8;
assert!(solution.is_valid(&challenge));
assert!(solution.to_hash().difficulty() >= target);
}
依赖项
~2–12MB
~124K SLoC