An open API service indexing awesome lists of open source software.

https://github.com/nexrfundev/nexr

A Chrome extension to create memecoins from tweets and articles, powered by Solana.
https://github.com/nexrfundev/nexr

crypto cryptocurrency extension-chrome memecoin pumpdotfun

Last synced: 14 days ago
JSON representation

A Chrome extension to create memecoins from tweets and articles, powered by Solana.

Awesome Lists containing this project

README

          

# NEXR
![image](https://github.com/user-attachments/assets/0a891b39-08df-440b-a3ac-f2c63e3d9483)

**Tokenize Anything. Tokenize Everything.**

# NEXR

**Tokenize Anything. Tokenize Everything.**

NEXR is a Chrome extension that lets you launch memecoins from **tweets**, **articles**, and **any content online** with a single click. Built on **Solana** and deployed instantly via **Pump.fun**, NEXR removes all friction from memecoin creation.

---

## How It Works
![image](https://github.com/user-attachments/assets/0a4a5b29-3ed0-4880-98be-45e2acdf7ea6)

1. **Highlight any tweet, post, or news article**
2. **Click the NEXR extension**
3. NEXR extracts the **title**, **image**, and **description** using AI
4. Set your **initial investment** and **launch** the token on Pump.fun
5. Go viral.

---

## Features

- **One-Click Tokenization** – Turn content into tokens instantly
- **AI Metadata** – Auto-generated titles, images, and descriptions
- **Built-in Wallet** – Manage your Solana wallet directly in the extension
- **Custom Image Upload** – Use your own art or pull directly from source
- **Developer Preview Mode** – Test launches with custom prompts
- **Leaderboard & History** – Track performance of your launches
- **Cross-Platform** – Works on Twitter, X, Reddit, Medium, and more

## Architecture
---![image](https://github.com/user-attachments/assets/f34500b5-871b-44a7-945f-56a8c2aacc70)

## Installation

1. Clone the repo:
```bash
git clone [https://github.com/nexrfundev/nexr.git]
2. Install dependencies:
cd nexr
npm install
3. Build the extension:
npm run build
4. Load in Chrome:
- Go to chrome://extensions/
- Enable Developer Mode
- Click Load Unpacked
- Select the /dist folder

Project Structure
nexr/
├── public/
├── src/
├── scripts/
├── assets/
├── tests/
├── sidebar.html
├── manifest.json
├── package.json
├── tailwind.config.js
├── tsconfig.json
└── ...
]]

/* NEXR Roadmap */

#include
#include
#define VERSION 0.5.1

class RoadmapFeature {
constructor(name, status, description) {
this.name = name;
this.status = status; // COMPLETED or PENDING
this.description = description;
}
}

function initRoadmap() {
return new Promise(async (resolve) => {

// Core Features ✓
await implement("PIN_EXTENSION"); // Sidebar for rapid token launches
await implement("TOKEN_LEADERBOARD"); // Track launches in real time
await implement("ISOLATED_TOKENIZATION"); // Select specific page sections
await implement("CUSTOM_AI_PROMPTS"); // Personalized token generation
await implement("CUSTOM_TOKEN_IMAGES"); // Upload custom images

// Developer & Education ✓
await implement("LEADERBOARD_API"); // Programmatic data access
await implement("EXPLAINER_VIDEO"); // Tutorial content
await implement("AUTO_WALLET_PROVISIONING"); // Easy onboarding
await implement("COIN_CREATE_CONTEST"); // Community engagement
await implement("METRICS_DASHBOARD"); // Usage analytics

// In Progress □
if (await getFunds("treasury")) {
implement("NEW_FEE_STRUCTURE"); // 3.3% to treasury
console.log("Fee structure: 60% complete");
}

try {
implement("WALLET_UPGRADES"); // Send, swap, and manage assets
console.log("Wallet upgrades: 20% complete");
} catch (e) {
console.log("Development in progress...");
}

// Summary
console.log("Total completed features: 10/12");

resolve("Roadmap initialized with v" + VERSION);
});
}

/*----------------------------------------------------------*\
| |
| // COMPLETED: |
| ✓ PIN_EXTENSION |
| ✓ TOKEN_LEADERBOARD |
| ✓ ISOLATED_TOKENIZATION |
| ✓ CUSTOM_AI_PROMPTS |
| ✓ LEADERBOARD_API |
| ✓ CUSTOM_TOKEN_IMAGES |
| ✓ AUTO_WALLET_PROVISIONING |
| |
| // PENDING: |
| □ NEW_FEE_STRUCTURE |
| □ WALLET_UPGRADES |
| |
\*----------------------------------------------------------*/

// Start deployment
initRoadmap().then(status => {
console.log(`NEXR roadmap deployment: ${status}`);
});