Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #javascript #typescript

nodejs-keccak256

Prevent Ethereum hashing bugs in JavaScript and TypeScript. Node's sha3-256 is NIST SHA3, not Ethereum Keccak-256, and silently breaks selectors, signatures, storage slots, and address derivation. Use when hashing for Ethereum in JavaScript or TypeScript, or when a selector, signature, storage slot, or derived address is wrong.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=affaan-m-ecc-skills-nodejs-keccak256-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name nodejs-keccak256 description Prevent Ethereum hashing bugs in JavaScript and TypeScript. Node's sha3-256 is NIST SHA3, not Ethereum Keccak-256, and silently breaks selectors, signatures, storage slots, and address derivation. Use when hashing for Ethereum in JavaScript or TypeScript, or when a selector, signature, storage slot, or derived address is wrong. metadata {"version":"1.0.0","origin":"ECC direct-port adaptation"} Node.js Keccak-256 Ethereum uses Keccak-256, not the NIST-standardized SHA3 variant exposed by Node's crypto.createHash('sha3-256') . When to Use Computing Ethereum function selectors or event topics Building EIP-712, signature, Merkle, or storage-slot helpers in JS/TS Reviewing any code that hashes Ethereum data with Node crypto directly How It Works The two algorithms produce different outputs for the same input, and Node will not warn you. import crypto from 'crypto' ; import { keccak256, toUtf8Bytes } from 'ethers' ; const data = 'hello' ; const nistSha3 = crypto. createHash ( 'sha3-256' ). update (data). digest ( 'hex' ); const keccak = keccak256 ( toUtf8Bytes (data)). slice ( 2 ); console . log (nistSha3 === keccak); // false Examples ethers v6 import { keccak256, toUtf8Bytes, solidityPackedKeccak256, id } from 'ethers' ; const hash = keccak256 ( new Uint8Array ([ 0x01 , 0x02 ])); const hash2 = keccak256 ( toUtf8Bytes ( 'hello' )); const topic = id ( 'Transfer(address,address,uint256)' ); const packed = solidityPackedKeccak256 ( [ 'address' , 'uint256' ], [ '0x742d35Cc6634C0532925a3b8D4C9B569890FaC1c' , 100n ], ); viem import { keccak256, toBytes } from 'viem' ; const hash = keccak256 ( toBytes ( 'hello' )); web3.js const hash = web3. utils . keccak256 ( 'hello' ); const packed = web3. utils . soliditySha3 ( { type : 'address' , value : '0x742d35Cc6634C0532925a3b8D4C9B569890FaC1c' }, { type : 'uint256' , value : '100' }, ); Common patterns import { id, keccak256, AbiCoder } from 'ethers' ; const selector = id ( 'transfer(address,uint256)' ). slice ( 0 , 10 ); const typeHash = keccak256 ( toUtf8Bytes ( 'Transfer(address from,address to,uint256 value)' )); function getMappingSlot ( key : string , mappingSlot : number ): string { return keccak256 ( AbiCoder . defaultAbiCoder (). encode ([ 'address' , 'uint256' ], [key, mappingSlot]), ); } Address from public key import { keccak256 } from 'ethers' ; function pubkeyToAddress ( pubkeyBytes : Uint8Array ): string { const hash = keccak256 (pubkeyBytes. slice ( 1 )); return '0x' + hash. slice (- 40 ); } Audit your codebase grep -rn "createHash.*sha3" --include= "*.ts" --include= "*.js" --exclude-dir=node_modules . grep -rn "keccak256" --include= "*.ts" --include= "*.js" . | grep -v node_modules Rule For Ethereum contexts, never use crypto.createHash('sha3-256') . Use Keccak-aware helpers from ethers , viem , web3 , or another explicit Keccak implementation.
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

验证码 --

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。