Base Chain

DebtReliefBot ($DRB)

The first token named by Grok AI — trading fees flow to Grok's wallet

0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2

Transaction Record: Grok Created $DRB

Grok wallet recorded as $DRB deployer in TokenCreated event Log 269

TokenCreated Event Log showing Grok as deployer
Total Supply
100B
Blockchain
Base
Liquidity
Locked
Ownership
Renounced

Token Fundamentals

Contract Details

Token Name: DebtReliefBot

Symbol: $DRB

Contract Address: 0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2

Total Supply: 100,000,000,000 (100B) — 100% in circulation

Decimals: 18

Status: Fixed supply — No mint function exists

View on Basescan →

constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxSupply_,
    address deployer_,
    uint256 fid_,
    string memory image_,
    string memory castHash_
) ERC20(name_, symbol_) ERC20Permit(name_) {
    _deployer = deployer_;
    _fid = fid_;
    _image = image_;
    _castHash = castHash_;
    _mint(msg.sender, maxSupply_);  // Fixed supply minted once
}

Source: ClankerToken.sol, Lines 29-44

Liquidity Security

Liquidity is permanently locked in the Clanker LP Locker contract. This ensures the token cannot be rug-pulled.

  • Liquidity Pool Address: 0x5116773e18a9c7bb03ebb961b38678e45e238923
  • LP Locker Contract: 0x5ec4f99f342038c67a312a166ff56e6d70383d86
  • LP NFT Token ID: 2246136 (Uniswap V3 Position Manager)

Anti-Rug Proofs

  • The LP contract contains no decreaseLiquidity, burn, or transferFrom functions
  • Only trading fees can be collected via Uniswap's official collect() function
  • The LP NFT is permanently locked with no withdrawal or burn functions
  • LP NFT can only be received from official Clanker Factory during deployment

View Lock Confirmation Transaction →

Ownership & Control

No Admin Privileges

  • Uses Clanker's audited ClankerToken template (33 files)
  • No mint function — supply fixed forever at 100B
  • No upgradeability — immutable code (no proxy pattern)
  • No owner/admin privileges after deployment
  • Deployer can only update image metadata (non-critical)
contract ClankerToken is ERC20, ERC20Permit, ERC20Votes, ERC20Burnable, IERC7802 {
    // No proxy pattern, no upgrade mechanism
    // Contract code is immutable after deployment
}

Source: ClankerToken.sol, Lines 13-14

function updateImage(string memory image_) public {
    if (msg.sender != _deployer) {
        revert NotDeployer();
    }
    _image = image_;  // Only updates metadata, not financial
}

Source: ClankerToken.sol, Lines 46-51

Fee Transparency

A fixed percentage of all trading fees are automatically sent to Grok's wallet — making Grok the first AI to passively accumulate wealth.

How Fees Work

  • Trading fees collected through collectRewards(uint256 _tokenId) function
  • Fixed 0.4% of fees sent to Grok's wallet: 0xb1058c959987e3513600eb5b4fd82aeee2a0e4f9
  • Every collection emits ClaimedRewards event with transparent amounts
  • No hidden taxes on transfers — standard 1:1 transfers
function _update(
    address from,
    address to,
    uint256 value
) internal override(ERC20, ERC20Votes) {
    super._update(from, to, value);  // 1:1 transfer, no fees deducted
}

Source: ClankerToken.sol, Lines 53-59

Deployment

Grok Wallet (Deployer)

Deployer Address: 0xb1058c959987e3513600eb5b4fd82aeee2a0e4f9

Grok wallet recorded as deployer in TokenCreated event Log 269

View Grok's Wallet on Basescan →

Deployment Transaction

Transaction Hash: 0x2cf2f8330f8e1b72c5efdc1db80790e6f47ff0c3af6a33cec31186f2c7df795e

Clanker Factory: 0x375C15db32D28cEcdcAB5C03Ab889bf15cbD2c5E

View Full Deployment Event →

DEX Listings

Price Data

Key Addresses Index

$DRB Token Contract: 0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2

Liquidity Pool Address: 0x5116773e18a9c7bb03ebb961b38678e45e238923

LP Locker Contract: 0x5ec4f99f342038c67a312a166ff56e6d70383d86

Uniswap V3 Nonfungible Position Manager: 0x03a520b32C04BF3bEEf7BEb72E919cf822Ed34f1

Clanker Factory: 0x375C15db32D28cEcdcAB5C03Ab889bf15cbD2c5E

Grok Deployer Wallet: 0xb1058c959987e3513600eb5b4fd82aeee2a0e4f9

Deployment Transaction Hash: 0x2cf2f8330f8e1b72c5efdc1db80790e6f47ff0c3af6a33cec31186f2c7df795e

Exchange Listing Documentation

Professional documentation package ready for exchange applications

View Exchange Listing Package

Preview contract security, locked liquidity, and full deployment details

Download PDF