geeknees9 downloadsShow inline blockie identicons for Ethereum wallet addresses.
Wallet Blockies is an Obsidian plugin that shows deterministic inline blockie identicons beside Ethereum-style wallet addresses.
It detects addresses matching 0x plus 40 hexadecimal characters in Live Preview and Reading mode. Matching addresses are displayed as a blockie followed by the original address text, so notes remain readable and copyable. The blockie algorithm is included locally so the plugin does not depend on the archived ethereum/blockies package at runtime.
Example:
Treasury: 0xA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48
Displays as:
Treasury: [blockie] 0xA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48
manifest.json, main.js, and styles.css into .obsidian/plugins/wallet-blockies/ in a vault.Wallet Blockies.geeknees/obsidian-blockie as a beta plugin.Wallet Blockies in Community plugins.Repository: https://github.com/geeknees/obsidian-blockie
Each GitHub release must attach these files:
main.jsmanifest.jsonstyles.cssThe release tag must exactly match the version in manifest.json, without a v prefix.
Run all tests:
npm test
Check the plugin entrypoint syntax:
node --check main.js
See RELEASE.md for the full publishing checklist.
Wallet Blockies は、Obsidian のノート内にある Ethereum 形式のウォレットアドレスに blockie アイコンを inline 表示するプラグインです。
0x から始まる 40 桁の hexadecimal 文字列を検出し、Live Preview と Reading mode の両方で表示します。表示は blockie の後ろに元のウォレットアドレス文字列を残す形なので、見た目で判別しやすく、アドレスもそのまま読めます。
例:
Treasury: 0xA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48
表示イメージ:
Treasury: [blockie] 0xA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48
.obsidian/plugins/wallet-blockies/ を作成します。manifest.json, main.js, styles.css をそのフォルダへ入れます。Wallet Blockies を有効化します。geeknees/obsidian-blockie を追加します。Wallet Blockies を有効化します。Repository: https://github.com/geeknees/obsidian-blockie
テストを実行します:
npm test
公開前チェックを実行します:
npm run check