Processing...
All Systems Online
📧

Email Generator

Generate masked email variants (Gmail dots/+ trick)

📖 How to Use

What it does

Generates unique email variants from a single Gmail address using two tricks:
  • Dot trick — Gmail ignores dots: j.o.h.n@gmail.com = john@gmail.com
  • Plus trickjohn+tag@gmail.com routes to john@gmail.com

Steps

  1. Enter your base Gmail (e.g. yourname@gmail.com)
  2. Set Count — how many variants to generate
  3. Click Generate Emails

Use cases

  • Multi-account registration (airdrops, testnets, platforms)
  • Each variant looks unique but all emails land in one inbox
  • Mass signup campaigns with unique email per account
💡 Works only with Gmail. All variants deliver to the same inbox — no need to create new accounts.
🕷️

Web Scraper

Extract links, images, text from any URL

📖 How to Use

What it does

Fetches any webpage and extracts content — links, images, text, or specific elements using CSS selectors.

Steps

  1. Enter the URL to scrape (include https://)
  2. Optionally set a CSS Selector to extract specific elements:
    • a = all links
    • img = all images
    • .class-name = elements with that class
    • #element-id = element with that ID
    • h1, h2, h3 = all headings
  3. Click Scrape
💡 Leave selector empty to get the full page content. Use selectors for targeted extraction.

ABI Encoder / Decoder

Encode & decode smart contract function calls

📖 How to Use

What it does

Encodes function calls into calldata (hex) or decodes existing calldata back into human-readable parameters using the contract's ABI.

Encode a function call

  1. Paste the ABI JSON array — at minimum the function you want to call
  2. Enter Function Name (e.g. transfer)
  3. Enter Parameters as JSON array (e.g. ["0xRecipient...", "1000000"])
  4. Click Encode → get hex calldata

Decode existing calldata

  1. Paste the ABI JSON
  2. Paste the calldata hex (e.g. 0xa9059cbb...)
  3. Click Decode → see function name + parameters
💡 Minimal ABI example: [{"name":"transfer","type":"function","inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}]}]
👤

Account Generator

Generate random identities with username, email & password

📖 How to Use

What it does

Generates random identity profiles with realistic names, usernames, emails, and passwords. Each identity is unique and ready for registration.

Steps

  1. Set Count (1–20 identities per batch)
  2. Optionally enter a Platform name to customize the generated data
  3. Click Generate Accounts

Each identity includes

  • Full name — realistic first + last name
  • Username — derived from name, unique
  • Email — ready for registration
  • Password — strong random password
💡 Combine with Email Generator for Gmail dot-trick variants — unique emails that all deliver to one inbox.