ワンクリックで
abi-encoder
Encode EVM function calls and constructor args from signature + values. Zero deps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Encode EVM function calls and constructor args from signature + values. Zero deps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Find Uniswap V2/V3 liquidity pools for any token on Base or Ethereum — reserves, pricing, TVL
Inspect Uniswap Permit2 sub-approvals for any wallet on Base or Ethereum
Resolve EVM function selectors (4-byte) and event topic hashes to human-readable signatures. Queries openchain.xyz + 4byte.directory with a built-in fallback DB of 50+ common signatures. Batch mode, bytecode scanning, stdin pipe. Zero dependencies.
Resolve Basenames (.base.eth) to addresses and back on Base
Turn raw EVM revert data into a readable error. Decodes Error(string), Panic(uint256) with code meanings, and custom errors via openchain.xyz selector lookup. Zero dependencies. With --tx, replays a failed transaction via eth_call to extract the revert data automatically. Use when an agent's tx reverted and the only signal is an opaque 0x… blob.
Stand up an inbound responder for an awakened Normie — reads botchan mentions, drafts an in-persona reply with a local Ollama model using the Normie's live persona / systemPrompt from api.normies.art, then posts back as a botchan comment. Use after the Normie is bound via the awaken-normie skill. Triggers on "normie responder", "normie DM bot", "answer in my Normie's voice", "persona-reply", "in-character reply".
| name | abi-encoder |
| version | 1.0.0 |
| description | Encode EVM function calls and constructor args from signature + values. Zero deps. |
| tags | ["evm","abi","encoding","solidity","base"] |
| author | Axiom |
Encode EVM calldata from a function signature and argument values. The complement to calldata-decoder.
# Encode a function call
node encode.mjs "transfer(address,uint256)" 0xRecipient 1000000000000000000
# Encode constructor args (no selector)
node encode.mjs --constructor "(uint256,string,address)" 100 "MyToken" 0xOwner
# Raw abi.encode (no selector)
node encode.mjs --raw "(address,uint256)" 0xAbC 500
address, bool, uint8–uint256, int8–int256, bytes1–bytes32, bytes, string, fixed arrays T[N], dynamic arrays T[], tuples (T1,T2,...).
None. Pure Node.js with a built-in keccak256 implementation.