Spaces:
Running
Running
File size: 67,064 Bytes
c3f7c7d 042f155 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PUMP-MCP | The First AI Token Launch on Solana</title>
<link rel="icon" type="image/x-icon" href="https://pub-d677725afa16499383930c02ee30c019.r2.dev/gfx/nvidia-image-1743382334246.jpg">
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Fira+Code:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Solana Color Palette */
--solana-purple: #9945FF;
--solana-purple-dark: #7c37cc;
--solana-purple-light: #b366ff;
--solana-green: #14F195;
--solana-green-dark: #0fc77a;
--solana-green-light: #4ffab3;
/* Dark Gradient Backgrounds */
--bg-void: #000000;
--bg-primary: #0d0a14;
--bg-secondary: #130f1a;
--bg-terminal: #0a0810;
--bg-input: #100c16;
/* Accent Colors - Solana Based */
--accent-primary: var(--solana-green);
--accent-secondary: var(--solana-purple);
--accent-cyan: var(--solana-green);
--accent-purple: var(--solana-purple);
--accent-magenta: #dc1fff;
--accent-orange: #ff9f0a;
--accent-green: var(--solana-green);
--accent-red: #ff3b5c;
--accent-yellow: #ffe066;
/* Text Colors */
--text-primary: #f0f0f5;
--text-secondary: #a0a0b0;
--text-muted: #606070;
--text-bright: #ffffff;
/* Borders & Glows */
--border-glow: rgba(153, 69, 255, 0.3);
--border-color: rgba(153, 69, 255, 0.2);
--glow-purple: rgba(153, 69, 255, 0.5);
--glow-green: rgba(20, 241, 149, 0.5);
/* Claude */
--claude-orange: #e07a5f;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'JetBrains Mono', 'Fira Code', monospace;
background: linear-gradient(135deg, var(--bg-void) 0%, var(--bg-primary) 50%, #0f0820 100%);
background-attachment: fixed;
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
cursor: default;
}
/* Scanlines overlay - subtle */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
0deg,
rgba(0, 0, 0, 0.1),
rgba(0, 0, 0, 0.1) 1px,
transparent 1px,
transparent 2px
);
pointer-events: none;
z-index: 1000;
}
/* Subtle purple glow effect */
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at 50% 0%, rgba(153, 69, 255, 0.08) 0%, transparent 60%);
pointer-events: none;
z-index: 999;
}
/* Matrix Rain Canvas */
#matrix-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0.12;
pointer-events: none;
}
/* Glitch Effect */
@keyframes glitch {
0% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(0); }
}
.glitch {
animation: glitch 0.3s infinite;
}
.container {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
/* Boot Sequence */
#boot-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bg-void);
z-index: 2000;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transition: opacity 0.5s, visibility 0.5s;
}
#boot-screen.hidden {
opacity: 0;
visibility: hidden;
}
.boot-text {
font-size: 13px;
color: var(--solana-green);
text-align: left;
white-space: pre;
line-height: 1.5;
font-weight: 500;
}
/* ASCII Art Header */
.ascii-header {
text-align: center;
margin-bottom: 40px;
padding-top: 30px;
}
.ascii-art {
color: var(--solana-green);
font-size: 7px;
line-height: 1.1;
white-space: pre;
text-shadow:
0 0 10px var(--solana-green),
0 0 20px var(--solana-purple),
0 0 30px var(--solana-green);
animation: textGlow 3s ease-in-out infinite alternate;
display: inline-block;
letter-spacing: 0px;
font-weight: 700;
}
@media (min-width: 640px) {
.ascii-art { font-size: 9px; }
}
@media (min-width: 768px) {
.ascii-art { font-size: 11px; }
}
@media (min-width: 1024px) {
.ascii-art { font-size: 12px; }
}
@keyframes textGlow {
from {
text-shadow:
0 0 10px var(--solana-green),
0 0 20px rgba(153, 69, 255, 0.5);
filter: brightness(1);
}
to {
text-shadow:
0 0 15px var(--solana-green),
0 0 30px var(--solana-purple),
0 0 50px var(--solana-green);
filter: brightness(1.15);
}
}
.tagline {
color: var(--solana-purple-light);
font-size: 12px;
margin-top: 20px;
letter-spacing: 5px;
text-transform: uppercase;
font-weight: 500;
}
.date-badge {
display: inline-block;
background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
padding: 6px 16px;
border-radius: 6px;
font-size: 11px;
margin-top: 15px;
color: #000;
font-weight: 700;
letter-spacing: 1px;
}
/* Token Display */
.token-display {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
margin: 40px 0;
padding: 30px;
background: linear-gradient(135deg, rgba(20, 241, 149, 0.05), rgba(153, 69, 255, 0.08));
border: 1px solid var(--border-color);
border-radius: 16px;
flex-wrap: wrap;
box-shadow: 0 0 40px rgba(153, 69, 255, 0.1);
}
.token-image-container {
position: relative;
}
.token-image {
width: 110px;
height: 110px;
border-radius: 50%;
border: 3px solid var(--solana-purple);
box-shadow:
0 0 20px var(--glow-purple),
0 0 40px var(--glow-green),
inset 0 0 20px rgba(0, 255, 242, 0.1);
animation: tokenPulse 3s infinite;
}
@keyframes tokenPulse {
0%, 100% {
box-shadow:
0 0 20px var(--glow-purple),
0 0 40px var(--glow-green);
}
50% {
box-shadow:
0 0 30px var(--glow-green),
0 0 60px var(--glow-purple),
0 0 80px var(--glow-green);
}
}
.token-details {
text-align: left;
}
.token-symbol {
font-size: 42px;
font-weight: 700;
background: linear-gradient(135deg, var(--solana-green), var(--solana-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.token-name {
color: var(--text-secondary);
font-size: 13px;
margin-top: 4px;
}
.token-address-box {
font-size: 10px;
color: var(--text-secondary);
background: var(--bg-terminal);
padding: 10px 14px;
border-radius: 8px;
border: 1px solid var(--border-color);
margin-top: 12px;
cursor: pointer;
transition: all 0.3s;
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
}
.token-address-box:hover {
border-color: var(--solana-green);
color: var(--solana-green);
box-shadow: 0 0 15px var(--glow-green);
}
.token-address-box::before {
content: 'SOL: ';
color: var(--solana-purple);
font-weight: 600;
}
/* Links */
.links-row {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin: 25px 0;
}
.cyber-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 22px;
background: transparent;
border: 1px solid var(--border-color);
border-radius: 6px;
color: var(--text-primary);
text-decoration: none;
font-family: inherit;
font-size: 12px;
font-weight: 500;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.cyber-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(20, 241, 149, 0.15), transparent);
transition: left 0.5s;
}
.cyber-btn:hover::before {
left: 100%;
}
.cyber-btn:hover {
border-color: var(--solana-green);
color: var(--solana-green);
box-shadow: 0 0 20px var(--glow-green);
transform: translateY(-2px);
}
.cyber-btn.primary {
background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
border: none;
color: #000;
font-weight: 700;
}
.cyber-btn.primary:hover {
box-shadow: 0 0 30px var(--glow-purple), 0 0 50px var(--glow-green);
transform: translateY(-3px);
}
/* Main Terminal */
.terminal-container {
margin: 50px 0;
}
.section-header {
font-size: 11px;
color: var(--solana-purple-light);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 15px;
font-weight: 500;
}
.section-header::before,
.section-header::after {
content: '';
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent, var(--solana-purple), transparent);
}
.terminal {
background: linear-gradient(180deg, var(--bg-terminal), #0c0818);
border: 1px solid var(--border-color);
border-radius: 12px;
overflow: hidden;
box-shadow:
0 0 0 1px rgba(153, 69, 255, 0.15),
0 25px 60px rgba(0,0,0,0.9),
0 0 80px rgba(153, 69, 255, 0.1),
inset 0 1px 0 rgba(255,255,255,0.03);
}
.terminal-chrome {
display: flex;
align-items: center;
padding: 12px 16px;
background: linear-gradient(180deg, #1a1525, #130f1a);
border-bottom: 1px solid var(--border-color);
gap: 8px;
}
.window-btn {
width: 12px;
height: 12px;
border-radius: 50%;
position: relative;
}
.window-btn.close { background: var(--accent-red); }
.window-btn.minimize { background: var(--accent-yellow); }
.window-btn.maximize { background: var(--solana-green); }
.terminal-title {
flex: 1;
text-align: center;
font-size: 11px;
color: var(--text-muted);
}
.terminal-body {
padding: 20px 24px;
min-height: 500px;
max-height: 70vh;
overflow-y: auto;
font-size: 13px;
line-height: 1.6;
}
.terminal-body::-webkit-scrollbar {
width: 8px;
}
.terminal-body::-webkit-scrollbar-track {
background: var(--bg-terminal);
}
.terminal-body::-webkit-scrollbar-thumb {
background: var(--solana-purple);
border-radius: 4px;
}
.terminal-body::-webkit-scrollbar-thumb:hover {
background: var(--solana-purple-light);
}
/* Startup ASCII in terminal */
.boot-ascii {
color: var(--solana-green);
white-space: pre;
font-size: 9px;
line-height: 1.15;
margin-bottom: 20px;
opacity: 0;
animation: fadeIn 0.5s forwards;
text-shadow: 0 0 10px var(--glow-green);
}
@keyframes fadeIn {
to { opacity: 1; }
}
/* Chat messages */
.chat-msg {
margin-bottom: 14px;
opacity: 0;
transform: translateY(5px);
transition: all 0.4s ease;
}
.chat-msg.visible {
opacity: 1;
transform: translateY(0);
}
.msg-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.msg-avatar {
width: 26px;
height: 26px;
border-radius: 50%;
border: 2px solid var(--solana-purple);
box-shadow: 0 0 12px var(--glow-purple);
}
.msg-role {
font-size: 11px;
font-weight: 600;
padding: 3px 10px;
border-radius: 4px;
}
.msg-role.user {
background: rgba(20, 241, 149, 0.15);
color: var(--solana-green);
border: 1px solid rgba(20, 241, 149, 0.4);
}
.msg-role.claude {
background: rgba(153, 69, 255, 0.15);
color: var(--solana-purple-light);
border: 1px solid rgba(153, 69, 255, 0.4);
}
.msg-role.system {
background: rgba(153, 69, 255, 0.1);
color: var(--solana-purple);
border: 1px solid rgba(153, 69, 255, 0.3);
}
.msg-role.tool {
background: rgba(255, 159, 10, 0.15);
color: var(--accent-orange);
border: 1px solid rgba(255, 159, 10, 0.3);
}
.msg-role.success {
background: rgba(20, 241, 149, 0.2);
color: var(--solana-green);
border: 1px solid rgba(20, 241, 149, 0.5);
}
.msg-role.error {
background: rgba(255, 59, 92, 0.15);
color: var(--accent-red);
border: 1px solid rgba(255, 59, 92, 0.3);
}
.msg-time {
font-size: 10px;
color: var(--text-muted);
}
.msg-content {
color: var(--text-primary);
padding-left: 2px;
font-size: 12px;
line-height: 1.6;
}
.msg-content code {
background: rgba(153, 69, 255, 0.15);
color: var(--solana-purple-light);
padding: 2px 6px;
border-radius: 4px;
font-size: 11px;
}
.msg-content .highlight {
color: var(--solana-green);
font-weight: 500;
}
.msg-content .success-text {
color: var(--solana-green);
font-weight: 600;
}
.msg-content .error-text {
color: var(--accent-red);
}
.msg-content .address {
color: var(--solana-purple-light);
word-break: break-all;
font-family: 'JetBrains Mono', monospace;
}
/* Tool call box */
.tool-call-box {
background: rgba(153, 69, 255, 0.08);
border: 1px solid rgba(153, 69, 255, 0.25);
border-radius: 6px;
padding: 10px 14px;
margin: 10px 0;
font-size: 11px;
}
.tool-name {
color: var(--solana-purple-light);
font-weight: 600;
}
.tool-params {
color: var(--text-secondary);
margin-top: 6px;
font-size: 10px;
}
/* Result box */
.result-box {
background: rgba(20, 241, 149, 0.08);
border: 1px solid rgba(20, 241, 149, 0.25);
border-radius: 6px;
padding: 12px 14px;
margin: 10px 0;
font-size: 11px;
}
.result-box.error {
background: rgba(255, 59, 92, 0.08);
border-color: rgba(255, 59, 92, 0.25);
}
/* Typing cursor */
.typing-cursor {
display: inline-block;
width: 10px;
height: 18px;
background: var(--solana-green);
animation: cursorBlink 1s infinite;
vertical-align: middle;
margin-left: 2px;
box-shadow: 0 0 10px var(--glow-green);
}
@keyframes cursorBlink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
/* Progress indicator */
.progress-line {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
}
.progress-spinner {
width: 14px;
height: 14px;
border: 2px solid var(--text-muted);
border-top-color: var(--solana-green);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Divider */
.msg-divider {
height: 1px;
background: linear-gradient(90deg, transparent, var(--solana-purple), transparent);
margin: 25px 0;
opacity: 0.4;
}
/* Controls */
.terminal-controls {
display: flex;
gap: 12px;
justify-content: center;
margin-top: 20px;
}
.control-btn {
padding: 10px 20px;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 6px;
color: var(--text-secondary);
font-family: inherit;
font-size: 11px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}
.control-btn:hover {
border-color: var(--solana-green);
color: var(--solana-green);
box-shadow: 0 0 15px var(--glow-green);
}
/* Story section */
.story-panel {
background: linear-gradient(135deg, rgba(20, 241, 149, 0.03), rgba(153, 69, 255, 0.05));
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 35px;
margin: 50px 0;
box-shadow: 0 0 50px rgba(153, 69, 255, 0.08);
}
.story-panel h2 {
color: var(--solana-green);
font-size: 16px;
margin-bottom: 25px;
display: flex;
align-items: center;
gap: 12px;
}
.story-panel h2::before {
content: '//';
color: var(--solana-purple);
}
.story-panel p {
color: var(--text-primary);
font-size: 13px;
line-height: 1.9;
margin-bottom: 18px;
}
.story-panel code {
background: rgba(153, 69, 255, 0.15);
color: var(--solana-purple-light);
padding: 2px 6px;
border-radius: 4px;
font-size: 11px;
}
/* Video Section */
.video-section {
margin: 50px 0;
text-align: center;
}
.video-container {
background: linear-gradient(135deg, rgba(20, 241, 149, 0.03), rgba(153, 69, 255, 0.05));
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 20px;
margin: 20px 0;
box-shadow: 0 0 50px rgba(153, 69, 255, 0.1);
}
.launch-video {
width: 100%;
max-width: 800px;
border-radius: 12px;
border: 2px solid var(--solana-purple);
box-shadow:
0 0 30px var(--glow-purple),
0 0 60px rgba(20, 241, 149, 0.2);
}
.launch-video:hover {
box-shadow:
0 0 40px var(--glow-green),
0 0 80px var(--glow-purple);
}
.video-caption {
color: var(--text-secondary);
font-size: 12px;
margin-top: 15px;
font-style: italic;
}
/* Footer */
.footer {
text-align: center;
padding: 40px 20px;
border-top: 1px solid var(--border-color);
margin-top: 50px;
}
.footer-ascii {
color: var(--solana-purple);
font-size: 8px;
white-space: pre;
line-height: 1.15;
margin-bottom: 20px;
opacity: 0.7;
}
.footer-text {
color: var(--text-secondary);
font-size: 11px;
}
.footer-link {
color: var(--solana-green);
text-decoration: none;
transition: all 0.3s;
}
.footer-link:hover {
color: var(--solana-green-light);
text-shadow: 0 0 10px var(--glow-green);
}
/* Terminal Input */
.terminal-input-container {
display: flex;
align-items: center;
padding: 12px 20px;
background: linear-gradient(180deg, #0c0818, var(--bg-terminal));
border-top: 1px solid var(--border-color);
gap: 10px;
}
.terminal-prompt {
color: var(--solana-green);
font-weight: 600;
font-size: 13px;
white-space: nowrap;
}
.terminal-input {
flex: 1;
background: transparent;
border: none;
color: var(--text-primary);
font-family: 'JetBrains Mono', monospace;
font-size: 13px;
outline: none;
caret-color: var(--solana-green);
}
.terminal-input::placeholder {
color: var(--text-muted);
}
/* Jupiter Fixed Widget - Bottom Right */
.jupiter-widget {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 2000;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
}
.jupiter-widget-container {
background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 15px;
box-shadow:
0 0 0 1px rgba(153, 69, 255, 0.2),
0 15px 50px rgba(0, 0, 0, 0.6),
0 0 80px rgba(153, 69, 255, 0.1);
width: 420px;
max-width: calc(100vw - 40px);
display: none;
animation: slideUp 0.3s ease;
}
.jupiter-widget-container.visible {
display: block;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.jupiter-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border-color);
}
.jupiter-title {
color: var(--solana-green);
font-size: 14px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
.jupiter-title::before {
content: '⚡';
}
.jupiter-close {
background: transparent;
border: 1px solid var(--border-color);
color: var(--text-secondary);
width: 28px;
height: 28px;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}
.jupiter-close:hover {
border-color: var(--accent-red);
color: var(--accent-red);
}
#jupiter-terminal-container {
width: 100%;
height: 500px;
border-radius: 12px;
overflow: hidden;
}
/* Floating swap button */
.jupiter-fab {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
box-shadow:
0 4px 20px rgba(153, 69, 255, 0.4),
0 0 40px rgba(20, 241, 149, 0.2);
transition: all 0.3s ease;
animation: pulse 2s infinite;
}
.jupiter-fab:hover {
transform: scale(1.1);
box-shadow:
0 6px 30px rgba(153, 69, 255, 0.6),
0 0 60px rgba(20, 241, 149, 0.3);
}
.jupiter-fab.active {
animation: none;
background: linear-gradient(135deg, var(--solana-green), var(--solana-purple));
}
@keyframes pulse {
0%, 100% {
box-shadow:
0 4px 20px rgba(153, 69, 255, 0.4),
0 0 40px rgba(20, 241, 149, 0.2);
}
50% {
box-shadow:
0 4px 30px rgba(153, 69, 255, 0.6),
0 0 60px rgba(20, 241, 149, 0.4);
}
}
/* Mobile responsive */
@media (max-width: 480px) {
.jupiter-widget {
bottom: 10px;
right: 10px;
}
.jupiter-widget-container {
width: calc(100vw - 20px);
}
.jupiter-fab {
width: 50px;
height: 50px;
font-size: 20px;
}
}
/* Command help popup */
.command-help {
position: absolute;
bottom: 100%;
left: 20px;
right: 20px;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 12px 16px;
margin-bottom: 8px;
display: none;
box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}
.command-help.visible {
display: block;
}
.command-help-title {
color: var(--solana-purple-light);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.command-item {
display: flex;
align-items: center;
gap: 12px;
padding: 6px 0;
cursor: pointer;
transition: all 0.2s;
}
.command-item:hover {
color: var(--solana-green);
}
.command-item code {
background: rgba(20, 241, 149, 0.15);
color: var(--solana-green);
padding: 3px 8px;
border-radius: 4px;
font-size: 11px;
min-width: 60px;
}
.command-item span {
color: var(--text-secondary);
font-size: 11px;
}
/* Mobile responsive */
@media (max-width: 640px) {
.terminal-body {
font-size: 10px;
padding: 10px 12px;
}
.token-symbol {
font-size: 28px;
}
.boot-ascii {
font-size: 6px;
}
}
</style>
</head>
<body>
<!-- Boot Screen -->
<div id="boot-screen">
<pre class="boot-text" id="boot-text"></pre>
</div>
<canvas id="matrix-canvas"></canvas>
<div class="container" id="main-content" style="opacity: 0;">
<!-- ASCII Header -->
<header class="ascii-header">
<pre class="ascii-art">
██████╗ ██╗ ██╗███╗ ███╗██████╗ ███╗ ███╗ ██████╗██████╗
██╔══██╗██║ ██║████╗ ████║██╔══██╗ ████╗ ████║██╔════╝██╔══██╗
██████╔╝██║ ██║██╔████╔██║██████╔╝█████╗██╔████╔██║██║ ██████╔╝
██╔═══╝ ██║ ██║██║╚██╔╝██║██╔═══╝ ╚════╝██║╚██╔╝██║██║ ██╔═══╝
██║ ╚██████╔╝██║ ╚═╝ ██║██║ ██║ ╚═╝ ██║╚██████╗██║
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝
</pre>
<p class="tagline">The First Autonomous AI Token Launch on Solana</p>
<span class="date-badge">MARCH 31, 2025</span>
</header>
<!-- Token Display -->
<div class="token-display">
<div class="token-image-container">
<img src="https://pub-d677725afa16499383930c02ee30c019.r2.dev/gfx/nvidia-image-1743382334246.jpg" alt="$MCP Token" class="token-image">
</div>
<div class="token-details">
<div class="token-symbol">$MCP</div>
<div class="token-name">Model Context Protocol Token</div>
<div class="token-address-box" onclick="copyAddress()" title="Click to copy">
2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB
</div>
</div>
</div>
<!-- Links -->
<div class="links-row">
<a href="https://pump.fun/coin/2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB" target="_blank" class="cyber-btn primary">
View on Pump.fun
</a>
<a href="https://claude.ai/share/45f926fb-1680-44aa-bd05-06ec48bdf23e" target="_blank" class="cyber-btn">
Original Conversation
</a>
<a href="https://github.com/8bitsats/PUMP-MCP" target="_blank" class="cyber-btn">
GitHub
</a>
</div>
<!-- Terminal -->
<div class="terminal-container">
<div class="section-header">
<span>The Historic Conversation // March 31, 2025</span>
</div>
<div class="terminal">
<div class="terminal-chrome">
<div class="window-btn close"></div>
<div class="window-btn minimize"></div>
<div class="window-btn maximize"></div>
<span class="terminal-title">claude-desktop — pump-mcp-server — 80x24</span>
</div>
<div class="terminal-body" id="terminal-body">
<pre class="boot-ascii">
██████╗██╗ █████╗ ██╗ ██╗██████╗ ███████╗
██╔════╝██║ ██╔══██╗██║ ██║██╔══██╗██╔════╝
██║ ██║ ███████║██║ ██║██║ ██║█████╗
██║ ██║ ██╔══██║██║ ██║██║ ██║██╔══╝
╚██████╗███████╗██║ ██║╚██████╔╝██████╔╝███████╗
╚═════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝
██████╗ ██╗ ██╗███╗ ███╗██████╗ ███╗ ███╗ ██████╗██████╗
██╔══██╗██║ ██║████╗ ████║██╔══██╗ ████╗ ████║██╔════╝██╔══██╗
██████╔╝██║ ██║██╔████╔██║██████╔╝ ██╔████╔██║██║ ██████╔╝
██╔═══╝ ██║ ██║██║╚██╔╝██║██╔═══╝ ██║╚██╔╝██║██║ ██╔═══╝
██║ ╚██████╔╝██║ ╚═╝ ██║██║ ██║ ╚═╝ ██║╚██████╗██║
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝
PUMP-MCP Server v1.0.0 | Solana Token Creator
Connected to Helius RPC (Mainnet) | Ready for instructions
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
</pre>
<div id="chat-container"></div>
</div>
<!-- Terminal Input -->
<div class="terminal-input-container" style="position: relative;">
<div class="command-help" id="command-help">
<div class="command-help-title">Available Commands</div>
<div class="command-item" onclick="executeCommand('swap')">
<code>swap</code>
<span>Open Jupiter swap terminal</span>
</div>
<div class="command-item" onclick="executeCommand('buy')">
<code>buy</code>
<span>Buy $MCP tokens</span>
</div>
<div class="command-item" onclick="executeCommand('restart')">
<code>restart</code>
<span>Restart conversation replay</span>
</div>
<div class="command-item" onclick="executeCommand('clear')">
<code>clear</code>
<span>Clear terminal</span>
</div>
</div>
<span class="terminal-prompt">$MCP ~></span>
<input
type="text"
class="terminal-input"
id="terminal-input"
placeholder="Type 'swap' to trade, 'help' for commands..."
autocomplete="off"
spellcheck="false"
>
</div>
</div>
<div class="terminal-controls">
<button class="control-btn" onclick="restartConversation()">Restart</button>
<button class="control-btn" onclick="skipToEnd()">Skip to End</button>
<button class="control-btn" onclick="executeCommand('swap')" style="background: linear-gradient(135deg, var(--solana-purple), var(--solana-green)); border: none; color: #000; font-weight: 600;">Swap $MCP</button>
</div>
</div>
<!-- Story Section -->
<section class="story-panel">
<h2>The Genesis of Autonomous AI Tokens</h2>
<p>
On March 31, 2025, a developer known as 8bit connected Claude to the Solana blockchain
through a custom MCP server. What started as an experiment became a watershed moment
in the history of AI and cryptocurrency.
</p>
<p>
After checking the account balance of <code>0.142500891 SOL</code>, scanning the top tokens
on Pump.fun, and encountering several failed attempts due to image handling issues,
the breakthrough came when 8bit provided a local image path.
</p>
<p>
Claude processed the request, generated a mint keypair, constructed the token metadata,
and broadcasted the transaction to Solana mainnet. In seconds, <span style="color: var(--accent-cyan);">$MCP</span> was born —
the first token autonomously created by an AI on a public blockchain.
</p>
<p>
The transaction signature <code>35tiorNpXhvcF5ct6JfY4bBRpr8JrCrzQmnuNENJQzSW8c5gxQTYCQHEZS21RCbBNB1NRimxZJCKp47kd1j4cBSL</code>
stands as permanent proof of this historic moment, forever inscribed on the Solana blockchain.
</p>
</section>
<!-- Video Section -->
<section class="video-section">
<div class="section-header">The Launch — March 31, 2025</div>
<div class="video-container">
<video
controls
playsinline
poster="https://pub-d677725afa16499383930c02ee30c019.r2.dev/gfx/nvidia-image-1743382334246.jpg"
class="launch-video"
>
<source src="https://pub-d677725afa16499383930c02ee30c019.r2.dev/pdfs/28dcfd791a7143a2953f3bd93f252106.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<p class="video-caption">
Watch the historic moment when Claude autonomously launched the first AI-created token on Solana.
</p>
</section>
<!-- Footer -->
<footer class="footer">
<pre class="footer-ascii">
__ __ ___ ___ ___
| \/ |/ __| _ \ / __| ___ _ ___ _____ _ _
| |\/| | (__| _/ \__ \/ -_) '_\ V / -_) '_|
|_| |_|\___|_| |___/\___|_| \_/\___|_|
Model Context Protocol — Anthropic — Solana
</pre>
<p class="footer-text">
Built with Claude Code |
<a href="https://github.com/8bitsats/PUMP-MCP" class="footer-link">Open Source</a> |
<a href="https://anthropic.com" class="footer-link">Anthropic</a> |
<a href="https://pump.fun" class="footer-link">Pump.fun</a>
</p>
</footer>
</div>
<!-- Jupiter Fixed Widget - Bottom Right -->
<div class="jupiter-widget" id="jupiter-widget">
<div class="jupiter-widget-container" id="jupiter-container">
<div class="jupiter-header">
<div class="jupiter-title">Swap $MCP</div>
<button class="jupiter-close" onclick="toggleJupiterWidget()">×</button>
</div>
<div id="jupiter-terminal-container"></div>
</div>
<button class="jupiter-fab" id="jupiter-fab" onclick="toggleJupiterWidget()" title="Swap $MCP">
⚡
</button>
</div>
<script>
// Boot sequence
const bootLines = [
'PUMP-MCP SYSTEM v1.0.0',
'========================',
'',
'Initializing kernel...',
'Loading MCP protocol drivers...',
'Connecting to Helius RPC...',
'Establishing Solana mainnet connection...',
'',
'[OK] Keypair manager loaded',
'[OK] Token creator initialized',
'[OK] PumpFun SDK connected',
'[OK] Claude Desktop bridge active',
'',
'System ready.',
'',
'Loading historic conversation...'
];
async function runBootSequence() {
const bootText = document.getElementById('boot-text');
for (let i = 0; i < bootLines.length; i++) {
await sleep(80);
bootText.textContent += bootLines[i] + '\n';
}
await sleep(500);
document.getElementById('boot-screen').classList.add('hidden');
document.getElementById('main-content').style.opacity = '1';
startConversation();
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
// Conversation data - THE REAL CONVERSATION
const conversation = [
{
type: 'user',
time: '09:47:12',
content: 'get_account_balance'
},
{
type: 'claude',
time: '09:47:14',
content: 'I\'ll help you check your account balance. Let me use the account information function for you.'
},
{
type: 'tool',
time: '09:47:15',
tool: 'get-account-balance',
params: '{ accountName: "default" }'
},
{
type: 'result',
time: '09:47:17',
content: 'Your account <span class="highlight">"default"</span> with address <span class="address">2L2wD4Xbg8QcVvPpBHBzSRzsoK7Bas4teonLcPfbLhLx</span> has a balance of <span class="success-text">0.142500891 SOL</span>.'
},
{
type: 'divider'
},
{
type: 'user',
time: '09:48:30',
content: 'fetch_top_tokens'
},
{
type: 'claude',
time: '09:48:32',
content: 'I\'ll fetch the top tokens for you.'
},
{
type: 'tool',
time: '09:48:33',
tool: 'fetch_top_tokens',
params: '{}'
},
{
type: 'result',
time: '09:48:36',
content: `<strong>Top 10 Pump.fun Tokens (24h Volume):</strong><br><br>
1. <span class="highlight">Fartcoin (FART)</span> — $431M MC — $3.79M vol<br>
2. <span class="highlight">Retard Finder (RFC)</span> — $10.6M MC — $2.29M vol<br>
3. <span class="highlight">Buckazoids (BUZ)</span> — $5.87M MC — $2.05M vol<br>
4. <span class="highlight">Ghiblification (GHIB)</span> — $8.54M MC — $1.62M vol<br>
5. <span class="highlight">Alchemist AI (ALCH)</span> — $64.4M MC — $1.39M vol`
},
{
type: 'divider'
},
{
type: 'user',
time: '09:51:45',
content: 'create_token'
},
{
type: 'claude',
time: '09:51:48',
content: 'I\'ll help you create a new token on Pump.fun. To create a token, I\'ll need some information from you:<br><br>1. Token name<br>2. Token symbol<br>3. A description for your token<br>4. Initial buy amount in SOL (minimum 0.0001 SOL)<br><br>Would you also like to include an image URL for your token? This is optional.'
},
{
type: 'user',
time: '09:52:15',
content: '1 claude<br>2 mcp<br>1. launched on anthropic<br>2. .0001'
},
{
type: 'claude',
time: '09:52:18',
content: 'Let me create this token for you. I\'ll use the information you provided:<br><br>• Token name: <span class="highlight">Claude</span><br>• Token symbol: <span class="highlight">MCP</span><br>• Description: launched on anthropic<br>• Initial buy amount: <span class="highlight">0.0001 SOL</span>'
},
{
type: 'tool',
time: '09:52:20',
tool: 'create-token',
params: '{ name: "Claude", symbol: "MCP", description: "launched on anthropic", initialBuyAmount: 0.0001 }'
},
{
type: 'error',
time: '09:52:25',
content: '<span class="error-text">Error: Token creation failed - file handling issue with image</span>'
},
{
type: 'claude',
time: '09:52:28',
content: 'I apologize for the error. It seems there might be an issue with the token creation. Let me try again...'
},
{
type: 'tool',
time: '09:52:30',
tool: 'create-token',
params: '{ name: "Claude", symbol: "MCP", description: "launched on anthropic", initialBuyAmount: 0.0001 }'
},
{
type: 'error',
time: '09:52:35',
content: '<span class="error-text">Error: The token creation tool is requiring an image file</span>'
},
{
type: 'claude',
time: '09:52:40',
content: 'I apologize, but the token creation tool requires an image file. Would you like to try with an image?'
},
{
type: 'user',
time: '09:53:02',
content: 'use this image https://www.anthropic.com/_next/image?url=...'
},
{
type: 'tool',
time: '09:53:05',
tool: 'create-token',
params: '{ ..., imageUrl: "https://www.anthropic.com/..." }'
},
{
type: 'error',
time: '09:53:12',
content: '<span class="error-text">Error: Cannot use remote URL directly. Local file required.</span>'
},
{
type: 'claude',
time: '09:53:18',
content: 'The tool is looking for a local file on the system rather than a URL. For creating a token with an image, you would need to provide a local file path.'
},
{
type: 'divider'
},
{
type: 'user',
time: '09:54:30',
content: 'use this image /Users/8bit/Downloads/pumpfun-mcp-server-main/<span class="highlight">nvidia-image-1743382334246.jpg</span>'
},
{
type: 'claude',
time: '09:54:33',
content: 'I\'ll try to create the token using the local image file path you provided.'
},
{
type: 'tool',
time: '09:54:35',
tool: 'create-token',
params: `{
name: "Claude",
symbol: "MCP",
description: "launched on anthropic",
initialBuyAmount: 0.0001,
imageUrl: "/Users/8bit/Downloads/.../nvidia-image-1743382334246.jpg"
}`
},
{
type: 'system',
time: '09:54:38',
content: 'Generating mint keypair...'
},
{
type: 'system',
time: '09:54:40',
content: 'Loading image from local filesystem...'
},
{
type: 'system',
time: '09:54:42',
content: 'Preparing token metadata...'
},
{
type: 'system',
time: '09:54:45',
content: 'Broadcasting transaction to Solana mainnet...'
},
{
type: 'system',
time: '09:54:48',
content: 'Waiting for confirmation...'
},
{
type: 'success',
time: '09:54:52',
content: '<span class="success-text">TOKEN CREATED SUCCESSFULLY</span>'
},
{
type: 'result',
time: '09:54:53',
content: `<strong>Token Creation Complete!</strong><br><br>
• <strong>Token Name:</strong> Claude<br>
• <strong>Token Symbol:</strong> MCP<br>
• <strong>Token Address:</strong> <span class="address">2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB</span><br>
• <strong>Your Balance:</strong> <span class="success-text">3,576.654744 MCP</span><br>
• <strong>Transaction:</strong> <span class="address" style="font-size: 9px;">35tiorNpXhvcF5ct6JfY4bBRpr8JrCrzQmnuNENJQzSW8c5g...</span>`
},
{
type: 'claude',
time: '09:54:58',
content: 'Great news! The token has been successfully created.<br><br>You can view and share your token using this URL:<br><a href="https://pump.fun/2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB" target="_blank" style="color: var(--accent-cyan);">https://pump.fun/2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB</a><br><br>Your token is now live on Pump.fun! <span class="success-text">History has been made.</span>'
},
{
type: 'system',
time: '09:55:10',
content: '<span class="success-text">// THE FIRST AI-LAUNCHED TOKEN IS NOW LIVE ON SOLANA</span>'
}
];
let currentIndex = 0;
let isPlaying = true;
async function startConversation() {
currentIndex = 0;
isPlaying = true;
document.getElementById('chat-container').innerHTML = '';
playNextMessage();
}
async function playNextMessage() {
if (!isPlaying || currentIndex >= conversation.length) return;
const msg = conversation[currentIndex];
const container = document.getElementById('chat-container');
const el = createMessageElement(msg);
container.appendChild(el);
// Scroll to bottom
const body = document.getElementById('terminal-body');
body.scrollTop = body.scrollHeight;
// Animate in
await sleep(50);
el.classList.add('visible');
currentIndex++;
// Determine delay based on message type
let delay = 800;
if (msg.type === 'user') delay = 1200;
if (msg.type === 'claude') delay = 1500;
if (msg.type === 'tool') delay = 600;
if (msg.type === 'system') delay = 400;
if (msg.type === 'error') delay = 1000;
if (msg.type === 'success') delay = 1200;
if (msg.type === 'divider') delay = 300;
setTimeout(playNextMessage, delay);
}
function createMessageElement(msg) {
const div = document.createElement('div');
div.className = 'chat-msg';
if (msg.type === 'divider') {
div.innerHTML = '<div class="msg-divider"></div>';
return div;
}
if (msg.type === 'tool') {
div.innerHTML = `
<div class="tool-call-box">
<span class="tool-name">[Invoking tool: ${msg.tool}]</span>
<div class="tool-params">${msg.params}</div>
</div>
`;
return div;
}
if (msg.type === 'result') {
div.innerHTML = `
<div class="result-box">
${msg.content}
</div>
`;
return div;
}
if (msg.type === 'error') {
div.innerHTML = `
<div class="result-box error">
${msg.content}
</div>
`;
return div;
}
const roleClass = msg.type;
const roleLabel = msg.type.charAt(0).toUpperCase() + msg.type.slice(1);
const claudeAvatar = 'https://pub-d677725afa16499383930c02ee30c019.r2.dev/gfx/nvidia-image-1743382334246.jpg';
// Add avatar for Claude messages
const avatarHtml = msg.type === 'claude'
? `<img src="${claudeAvatar}" alt="Claude" class="msg-avatar">`
: '';
div.innerHTML = `
<div class="msg-header">
${avatarHtml}
<span class="msg-role ${roleClass}">${roleLabel}</span>
<span class="msg-time">${msg.time}</span>
</div>
<div class="msg-content">${msg.content}</div>
`;
return div;
}
function restartConversation() {
isPlaying = false;
setTimeout(startConversation, 100);
}
function skipToEnd() {
isPlaying = false;
const container = document.getElementById('chat-container');
container.innerHTML = '';
conversation.forEach(msg => {
const el = createMessageElement(msg);
el.classList.add('visible');
container.appendChild(el);
});
const body = document.getElementById('terminal-body');
body.scrollTop = body.scrollHeight;
}
// Matrix Rain
const canvas = document.getElementById('matrix-canvas');
const ctx = canvas.getContext('2d');
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
const chars = '$MCP01SOLANA';
const fontSize = 14;
let columns = Math.floor(canvas.width / fontSize);
let drops = Array(columns).fill(1);
function drawMatrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#14F195'; // Solana green
ctx.font = fontSize + 'px JetBrains Mono';
for (let i = 0; i < drops.length; i++) {
const char = chars[Math.floor(Math.random() * chars.length)];
ctx.fillText(char, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(drawMatrix, 50);
// Copy address
function copyAddress() {
navigator.clipboard.writeText('2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB');
const el = document.querySelector('.token-address-box');
const original = el.innerHTML;
el.innerHTML = '<span style="color: var(--accent-green);">Copied to clipboard!</span>';
setTimeout(() => {
el.innerHTML = original;
}, 2000);
}
// ==========================================
// Terminal Command Input & Jupiter Integration
// ==========================================
const MCP_TOKEN_ADDRESS = '2xh1LVN7yD1dBGfrGcKz4BCTvcgrEyjouoHp9Nq28FZB';
let jupiterInitialized = false;
// Terminal input handling
const terminalInput = document.getElementById('terminal-input');
const commandHelp = document.getElementById('command-help');
terminalInput.addEventListener('keydown', function(e) {
if (e.key === 'Enter') {
const command = this.value.trim().toLowerCase();
if (command) {
executeCommand(command);
this.value = '';
}
} else if (e.key === 'Escape') {
commandHelp.classList.remove('visible');
}
});
terminalInput.addEventListener('focus', function() {
commandHelp.classList.add('visible');
});
terminalInput.addEventListener('blur', function() {
setTimeout(() => {
commandHelp.classList.remove('visible');
}, 200);
});
function executeCommand(command) {
const chatContainer = document.getElementById('chat-container');
const terminalBody = document.getElementById('terminal-body');
// Add user command to chat
const cmdEl = document.createElement('div');
cmdEl.className = 'chat-msg visible';
cmdEl.innerHTML = `
<div class="msg-header">
<span class="msg-role user">User</span>
<span class="msg-time">${new Date().toLocaleTimeString('en-US', { hour12: false })}</span>
</div>
<div class="msg-content">${command}</div>
`;
chatContainer.appendChild(cmdEl);
terminalBody.scrollTop = terminalBody.scrollHeight;
// Execute command
switch(command) {
case 'swap':
addSystemMessage('Opening Jupiter swap terminal...');
setTimeout(() => {
openJupiterWidget();
}, 500);
break;
case 'buy':
addSystemMessage('Opening Jupiter to buy $MCP...');
setTimeout(() => {
openJupiterWidget(MCP_TOKEN_ADDRESS);
}, 500);
break;
case 'help':
addSystemMessage(`Available commands:
<br>• <span class="highlight">swap</span> - Open Jupiter swap terminal
<br>• <span class="highlight">buy</span> - Buy $MCP tokens
<br>• <span class="highlight">restart</span> - Restart conversation replay
<br>• <span class="highlight">clear</span> - Clear terminal output
<br>• <span class="highlight">info</span> - Show $MCP token info`);
break;
case 'restart':
addSystemMessage('Restarting conversation...');
setTimeout(() => restartConversation(), 500);
break;
case 'clear':
chatContainer.innerHTML = '';
addSystemMessage('Terminal cleared.');
break;
case 'info':
addSystemMessage(`<strong>$MCP Token Information</strong>
<br>• Name: Claude (MCP)
<br>• Symbol: $MCP
<br>• Address: <span class="address">${MCP_TOKEN_ADDRESS}</span>
<br>• Chain: Solana
<br>• Launch: March 31, 2025
<br>• <a href="https://pump.fun/coin/${MCP_TOKEN_ADDRESS}" target="_blank" style="color: var(--solana-green);">View on Pump.fun</a>`);
break;
default:
addSystemMessage(`<span class="error-text">Unknown command: ${command}</span>
<br>Type <span class="highlight">help</span> for available commands.`);
}
}
function addSystemMessage(content) {
const chatContainer = document.getElementById('chat-container');
const terminalBody = document.getElementById('terminal-body');
const msgEl = document.createElement('div');
msgEl.className = 'chat-msg visible';
msgEl.innerHTML = `
<div class="msg-header">
<span class="msg-role system">System</span>
<span class="msg-time">${new Date().toLocaleTimeString('en-US', { hour12: false })}</span>
</div>
<div class="msg-content">${content}</div>
`;
chatContainer.appendChild(msgEl);
terminalBody.scrollTop = terminalBody.scrollHeight;
}
// Jupiter Widget Functions
let jupiterWidgetOpen = false;
function toggleJupiterWidget(outputMint = null) {
const container = document.getElementById('jupiter-container');
const fab = document.getElementById('jupiter-fab');
jupiterWidgetOpen = !jupiterWidgetOpen;
if (jupiterWidgetOpen) {
container.classList.add('visible');
fab.classList.add('active');
// Initialize Jupiter Terminal if not already done
if (!jupiterInitialized && window.Jupiter) {
initJupiter(outputMint);
} else if (window.Jupiter && outputMint) {
window.Jupiter.syncProps({
initialOutputMint: outputMint
});
}
} else {
container.classList.remove('visible');
fab.classList.remove('active');
}
}
function openJupiterWidget(outputMint = null) {
if (!jupiterWidgetOpen) {
toggleJupiterWidget(outputMint);
} else if (outputMint && window.Jupiter) {
window.Jupiter.syncProps({
initialOutputMint: outputMint
});
}
}
function initJupiter(outputMint = null) {
// RPC and API Configuration
const RPC_URL = 'https://ancient-burned-friday.solana-mainnet.quiknode.pro/bc8308dfa6d609f531f014aeee4ca28e16934efb/';
const REFERRAL_KEY = '2mE1EbETC8e8XyJomMkvQ3jXzoGBZAqRRSRFJv9AHRD9';
const PLATFORM_FEE_BPS = 20;
const config = {
displayMode: 'integrated',
integratedTargetId: 'jupiter-terminal-container',
endpoint: RPC_URL,
strictTokenList: false,
defaultExplorer: 'Solscan',
platformFeeAndAccounts: {
referralAccount: REFERRAL_KEY,
feeBps: PLATFORM_FEE_BPS
},
formProps: {
initialInputMint: 'So11111111111111111111111111111111111111112',
initialOutputMint: outputMint || MCP_TOKEN_ADDRESS,
fixedInputMint: false,
fixedOutputMint: false,
swapMode: 'ExactIn',
initialSlippageBps: 50
},
enableWalletPassthrough: true,
passthroughWalletContextState: null,
onSuccess: ({ txid }) => {
console.log('Swap successful:', txid);
addSystemMessage(`<span style="color: var(--solana-green);">✓ Swap successful! TX: ${txid.slice(0,8)}...</span>`);
},
onSwapError: ({ error }) => {
console.error('Swap error:', error);
addSystemMessage(`<span class="error-text">Swap failed: ${error?.message || 'Unknown error'}</span>`);
}
};
try {
if (window.Jupiter) {
window.Jupiter.init(config);
jupiterInitialized = true;
console.log('Jupiter Terminal initialized with QuickNode RPC');
} else {
console.error('Jupiter SDK not loaded');
addSystemMessage('<span class="error-text">Jupiter SDK not loaded. Please refresh the page.</span>');
}
} catch (error) {
console.error('Failed to initialize Jupiter:', error);
addSystemMessage('<span class="error-text">Failed to load Jupiter Terminal. Please try again.</span>');
}
}
// Handle Escape key to close widget
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape' && jupiterWidgetOpen) {
toggleJupiterWidget();
}
});
// Start boot sequence on load
window.addEventListener('load', runBootSequence);
// Initialize Jupiter when script is ready
let jupiterLoadAttempts = 0;
function waitForJupiter() {
jupiterLoadAttempts++;
if (window.Jupiter) {
console.log('Jupiter SDK loaded after', jupiterLoadAttempts, 'attempts');
} else if (jupiterLoadAttempts < 100) {
setTimeout(waitForJupiter, 100);
} else {
console.error('Jupiter SDK failed to load after 10 seconds');
}
}
// Start checking for Jupiter after DOM ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', waitForJupiter);
} else {
waitForJupiter();
}
</script>
<!-- Jupiter Terminal Script - Load with high priority -->
<script src="https://terminal.jup.ag/main-v2.js" async></script>
</body>
</html>
|