Skip to main content

Mainnet Deployments

Mainnet launch coming soon! We’re currently in testnet phase. Join the waitlist for early access.
ChainFactory AddressToken ImplementationCurve ImplementationExplorerStatus
Ethereum MainnetTBDTBDTBDEtherscanComing Soon
BaseTBDTBDTBDBasescanComing Soon
Arbitrum OneTBDTBDTBDArbiscanComing Soon
PolygonTBDTBDTBDPolygonscanComing Soon
OptimismTBDTBDTBDOptimistic EtherscanComing Soon
BNB ChainTBDTBDTBDBscScanComing Soon
Avalanche C-ChainTBDTBDTBDSnowtraceComing Soon
ZircuitTBDTBDTBDZircuit ExplorerComing Soon
LineaTBDTBDTBDLineascanComing Soon

Testnet Deployments

Ethereum Sepolia

ContractAddress
RektHubFactory0x5BEfF2C2bd76F6FA35bFc6aCefA62fd5f9FF5426
Token Implementation0x95e927a3eb7036b12f003b0e27cabd52da80d321
Curve Implementation0x6aba379d67fee65e6faba83c120abffe701ac492
Network Details:

Base Sepolia

ContractAddress
RektHubFactoryTBD
Token ImplementationTBD
Curve ImplementationTBD
Network Details:

Arbitrum Sepolia

ContractAddress
RektHubFactoryTBD
Token ImplementationTBD
Curve ImplementationTBD
Network Details:

Contract Verification

All RektHub contracts are verified on their respective block explorers. You can:
  1. View source code directly on the explorer
  2. Interact with contracts using the Write/Read Contract interface
  3. Verify deployments by checking constructor arguments
  4. Audit implementations since all code is open source
Need the ABI? Visit the contract on any block explorer and look for the “Contract” tab. The ABI is available in JSON format.

Using Contract Addresses

In Your Code

// Import from your config
import { FACTORY_ADDRESS } from './config';

const factory = new ethers.Contract(FACTORY_ADDRESS, FACTORY_ABI, provider);

Multi-Chain Configuration

// config/contracts.js
const CONTRACTS = {
	// Mainnet
	1: {
		// Ethereum
		factory: '0x...',
		tokenImpl: '0x...',
		curveImpl: '0x...',
	},
	8453: {
		// Base
		factory: '0x...',
		tokenImpl: '0x...',
		curveImpl: '0x...',
	},
	42161: {
		// Arbitrum
		factory: '0x...',
		tokenImpl: '0x...',
		curveImpl: '0x...',
	},

	// Testnets
	11155111: {
		// Sepolia
		factory: '0x...',
		tokenImpl: '0x...',
		curveImpl: '0x...',
	},
};

export function getContracts(chainId) {
	if (!CONTRACTS[chainId]) {
		throw new Error(`Chain ${chainId} not supported`);
	}
	return CONTRACTS[chainId];
}

Implementation Contracts

RektHub uses the minimal proxy pattern (EIP-1167) for gas-efficient deployments. The implementation contracts are deployed once per chain, and each token/curve is a minimal proxy pointing to these implementations.

What are Implementation Contracts?

  • Token Implementation: The master ERC20 contract that all tokens clone
  • Curve Implementation: The master bonding curve logic that all curves clone
  • Gas Savings: Creating new tokens costs ~100k gas instead of ~3M gas

Why This Matters

  • You cannot interact directly with implementation contracts
  • Always use the Factory to create tokens and trade
  • Each token/curve has its own address and isolated state
  • Implementations are immutable

Chain Integration Status

Live Chains

Currently in testnet phase across all chains.

In Progress

Mainnet deployments pending and in final testing.

Coming Soon

  • Other non EVM chains?
  • More EVM chains based on community demand

Migration Tracking

When tokens graduate to DEX, migration events are emitted by the Factory:
// Listen for migrations across all chains
factory.on(
	'TokenMigrated',
	(
		tokenAddress,
		curveAddress,
		poolAddress,
		platformName,
		nativeLiquidity,
		tokenLiquidity,
		migrationFee,
		creatorFee,
		platformFee
	) => {
		console.log(`Token ${tokenAddress} graduated to ${platformName}`);
		console.log(`Pool address: ${poolAddress}`);
		console.log(
			`Liquidity: ${ethers.formatEther(nativeLiquidity)} native tokens`
		);
	}
);

Updates & Notifications

Stay updated on new deployments: - Follow us on X (Twitter) - Join our Telegram - Watch our GitHub

Need Help?


Want RektHub on your chain? We’re always open to integrating new EVM-compatible chains. Reach out on Telegram with: - Chain name and details - Expected user base - Why RektHub would benefit your ecosystem Let’s build the creator economy together.