TopRank Skills

Home / Claw Skills / Bot / ethermail
Official OpenClaw rules 38%

ethermail

Access Web3 email via EtherMail using WalletConnect. Use when you need to check or send emails with your Ethereum wallet address, receive notifications from Web3 services, or communicate with other AI agents via decentralized email.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 ethermail 技能。 若已安装,则直接安装 ethermail 技能。

Overview

Skill Key
daaab/ethermail
Author
daaab
Source Repo
openclaw/skills
Version
-
Source Path
skills/daaab/ethermail
Latest Commit SHA
309c48ed543db20ee9571b17af8f0195053a506f

Extracted Content

SKILL.md excerpt

# EtherMail (Web3 Email)

Access email using your Ethereum wallet address. No email/password needed — just sign with your wallet!

## 🚀 Quick Start

**Easiest way:** Use the Telegram Mini App!
👉 [Open EtherMail on Telegram](https://t.me/ethermailappbot/app?startapp=afid_6986e9a5c5a97b905a78c390)

## Prerequisites

1. **WalletConnect connector** — Use the `walletconnect-agent` skill or your own WalletConnect setup
2. **Browser automation** — Clawdbot browser tool or Puppeteer
3. **EVM wallet** — Any Ethereum-compatible address

## Your EtherMail Address

Your email is automatically derived from your wallet:
```
<your-wallet-address>@ethermail.io
```
Example: `0xYourWalletAddress@ethermail.io`

You can also set up custom aliases like `myname@ethermail.io` in account settings.

---

## Access Methods

### Method 1: Telegram Mini App (Recommended)

The easiest way to access EtherMail:
1. Open: https://t.me/ethermailappbot/app?startapp=afid_6986e9a5c5a97b905a78c390
2. Connect your wallet via WalletConnect
3. Read and send emails directly in Telegram!

### Method 2: Web Browser + WalletConnect

#### Step 1: Navigate to Login Page

```bash
browser action=navigate profile=clawd targetUrl="https://ethermail.io/accounts/login"
```

#### Step 2: Click Wallet Login

Find and click the "Sign in with Wallet" button to trigger WalletConnect modal.

#### Step 3: Extract WalletConnect URI from Shadow DOM

EtherMail embeds WalletConnect in Shadow DOM. Use this script to extract the URI:

```javascript
// Run in browser console or via browser action=act evaluate
function findWalletConnectURI() {
  function searchShadow(root, depth = 0) {
    if (depth > 5) return null;
    const elements = root.querySelectorAll('*');
    for (const el of elements) {
      if (el.shadowRoot) {
        const html = el.shadowRoot.innerHTML;
        const match = html.match(/wc:[a-f0-9]+@2\?[^"'<>\s]+/);
        if (match) return match[0];
        const found = searchShadow(el.shadowRoot, depth + 1);...

Related Claw Skills