Der Grayscale Worldcoin ETF nimmt mit einem S-1-Antrag bei der SEC vom 21. Juli 2026 erste Form an, der erste US-Antrag für den Biometrie-Token WLD von Sam Altmans Projekt. Der Kurs sprang binnen 24 Stunden um rund 8 Prozent auf ein Tageshoch von 0,387 US-Dollar.

<!-- "In Kürze" Auto-Summary Widget For: krypto-guru.de (WordPress / Divi Code Module) Paste this entire block into a Divi Code Module after your intro paragraph. IMPORTANT: Only collects H2/H3 headings from within the article content area, not from related articles, sidebar, footer, or other page sections. -->

/* ===== Base Reset ===== */ #kg-summary-widget { box-sizing: border-box !important; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important; line-height: 1.5 !important; text-align: left !important; } #kg-summary-widget * { box-sizing: border-box !important; } /* ===== Card ===== */ .kg-card-container { background: rgba(30, 30, 40, 0.95) !important; border-radius: 12px !important; padding: 24px 32px !important; position: relative !important; overflow: hidden !important; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 10px 15px -3px rgba(0, 0, 0, 0.4) !important; } /* Left accent border */ .kg-card-container::before { content: "" !important; position: absolute !important; left: 0 !important; top: 0 !important; bottom: 0 !important; width: 4px !important; background: #2ab5e8 !important; border-radius: 4px 0 0 4px !important; } /* ===== Header ===== */ .kg-card-header { display: flex !important; flex-direction: column !important; align-items: center !important; margin-bottom: 20px !important; text-align: center !important; } .kg-icon { font-size: 24px !important; margin-bottom: 8px !important; display: block !important; } .kg-heading { margin: 0 !important; font-size: 20px !important; font-weight: 700 !important; letter-spacing: -0.01em !important; color: #ffffff !important; } /* ===== Bullet List ===== */ .kg-bullet-list { list-style: none !important; padding: 0 !important; margin: 0 !important; } .kg-list-item { position: relative !important; padding-left: 24px !important; margin-bottom: 12px !important; } .kg-list-item:last-child { margin-bottom: 0 !important; } /* Custom accent dot */ .kg-list-item::before { content: "" !important; position: absolute !important; left: 0 !important; top: 0.6em !important; width: 8px !important; height: 8px !important; border-radius: 50% !important; background: #2ab5e8 !important; } /* ===== Anchor Links ===== */ .kg-anchor { text-decoration: none !important; font-size: 16px !important; line-height: 1.6 !important; display: block !important; cursor: pointer !important; transition: opacity 0.2s ease !important; } .kg-anchor:hover { opacity: 0.8 !important; } /* ===== Responsive ===== */ @media (max-width: 768px) { .kg-card-container { padding: 20px 24px !important; } } (function() { /* ===== CONFIG — edit these values to customize ===== */ var CONFIG = { headingText: 'In Kürze', maxBullets: 5, accentColor: '#2ab5e8', bgColor: 'rgba(30, 30, 40, 0.95)', textColor: '#e0e0e0', headingColor: '#ffffff', icon: '💡', smoothScrollOffset: 80, // px offset for sticky header /* * CSS selector for the article content container. * The widget will ONLY collect H2/H3 headings from within this container. * This prevents picking up headings from related articles, sidebar, footer etc. * * Common Divi selectors to try if the default doesn't work: * '.entry-content' * 'article .entry-content' * '.et_pb_section_0' (first section on the page) * '.post-content' * * You can also use a custom class you add to your Divi section. */ contentSelector: '.et_pb_post_content' }; /** * Converts heading text into a URL-safe slug. */ function slugify(text) { return text .toString() .toLowerCase() .trim() .replace(/s+/g, '-') .replace(/[^w-]+/g, '') .replace(/--+/g, '-'); } /** * Finds the article content container using the configured selector. * Falls back to walking up from the widget to find the nearest Divi section. */ function findContentContainer(widget) { // 1. Try the configured selector var container = document.querySelector(CONFIG.contentSelector); if (container) return container; // 2. Fallback: walk up from widget to the nearest Divi section var parent = widget.parentElement; while (parent) { if (parent.classList && (parent.classList.contains('et_pb_section') || parent.classList.contains('entry-content') || parent.tagName === 'ARTICLE')) { return parent; } parent = parent.parentElement; } // 3. Last resort: use the full document body (original behavior) return document.body; } function initWidget() { var widget = document.getElementById('kg-summary-widget'); var listContainer = document.getElementById('kg-bullet-list'); var headingEl = document.getElementById('kg-widget-heading'); var iconEl = document.getElementById('kg-widget-icon'); if (!widget || !listContainer) return; /* --- Apply config colours --- */ var card = widget.querySelector('.kg-card-container'); card.style.backgroundColor = CONFIG.bgColor; // Inject dynamic accent colours for pseudo-elements var dynamicStyle = document.createElement('style'); dynamicStyle.innerHTML = '#kg-summary-widget .kg-card-container::before { background: ' + CONFIG.accentColor + ' !important; }' + '#kg-summary-widget .kg-list-item::before { background: ' + CONFIG.accentColor + ' !important; }'; document.head.appendChild(dynamicStyle); headingEl.innerText = CONFIG.headingText; headingEl.style.color = CONFIG.headingColor; iconEl.innerText = CONFIG.icon; /* --- Find the scoped content container --- */ var contentContainer = findContentContainer(widget); /* --- Collect H2s and H3s ONLY within the content container, AFTER the widget --- */ var allHeadings = contentContainer.querySelectorAll('h2, h3'); var validHeadings = []; for (var i = 0; i < allHeadings.length; i++) { var h = allHeadings[i]; // Skip the widget's own heading if (h === headingEl) continue; // Only include headings that appear AFTER the widget in the DOM // Node.DOCUMENT_POSITION_FOLLOWING === 4 if (widget.compareDocumentPosition(h) & 4) { validHeadings.push(h); } } // Hide if no headings found if (validHeadings.length === 0) { widget.style.display = 'none'; return; } /* --- Render bullets (max from config) --- */ var items = validHeadings.slice(0, CONFIG.maxBullets); for (var j = 0; j < items.length; j++) { (function(heading, index) { // Ensure the heading has an id for anchor linking if (!heading.id) { heading.id = 'section-' + slugify(heading.textContent) + '-' + index; } var li = document.createElement('li'); li.className = 'kg-list-item'; var a = document.createElement('a'); a.className = 'kg-anchor'; a.href = '#' + heading.id; a.innerText = heading.textContent; // Inline style to survive Divi overrides a.style.color = CONFIG.textColor; a.addEventListener('click', function(e) { e.preventDefault(); var target = document.getElementById(heading.id); if (target) { var top = target.getBoundingClientRect().top + window.pageYOffset - CONFIG.smoothScrollOffset; window.scrollTo({ top: top, behavior: 'smooth' }); history.pushState(null, null, '#' + heading.id); } }); li.appendChild(a); listContainer.appendChild(li); })(items[j], j); } // Reveal the widget widget.style.display = 'block'; } // Run when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initWidget); } else { initWidget(); } })();

Grayscale plant Worldcoin Spot ETF

Der Vermögensverwalter Grayscale hat am Dienstag, 21. Juli 2026, einen S-1-Antrag für den Grayscale Worldcoin ETF bei der US-Börsenaufsicht SEC eingereicht, der Kurs von WLD sprang binnen 24 Stunden um rund 8 Prozent auf ein Tageshoch von 0,387 US-Dollar. Es ist der erste US-Fondsantrag für den Token des von Sam Altman und Alex Blania gegründeten Unternehmens Tools for Humanity.

Der geplante Fonds soll unter dem Ticker GWLD an der Nasdaq notieren und dabei die generischen Listing-Standards der Börse für rohstoffbasierte Trusts nutzen, wodurch eine gesonderte Einzelprüfung der Notierung entfallen könnte. Er soll den Kurs von WLD über die CoinDesk Worldcoin Benchmark Rate abbilden. Als Verwahrer ist laut Antrag BitGo Bank & Trust vorgesehen, die Bank of New York Mellon soll als Transfer- und Verwaltungsstelle fungieren. Zu Gebühren, Startkapital oder teilnehmenden Handelshäusern macht der Antrag bislang keine Angaben.

Erstes US-ETF für Worldcoin

Der Grayscale Worldcoin ETF wäre der erste US-Fonds, der direkt WLD hält, das native Token des World Network. Grayscale betreibt mit dem Bitcoin Trust und dem Ethereum Trust bereits zwei der größten Krypto-Fondsprodukte in den USA und erweitert sein Angebot nun gezielt um Altcoins abseits der beiden größten Kryptowährungen. Laut dem bei der SEC eingereichten S-1-Antrag lag die Marktbewertung von WLD zum 30. Juni 2026 bei rund 1,4 Mrd. US-Dollar, Platz 41 unter den größten digitalen Assets.

Trotz des Kurssprungs notiert WLD nach Marktdaten weiter rund 97 Prozent unter seinem Hoch aus dem Jahr 2024. Der Antrag steht für institutionelle Adoption von Altcoin-Fonds abseits von Bitcoin und Ethereum, nachdem in den vergangenen Monaten bereits erste US-Spot-ETFs auf andere Token an den Start gingen.

Institutionelle Infrastruktur für Biometrie-Token

Der Antrag für den Grayscale Worldcoin ETF ist noch keine Zulassung. Die SEC kann Nachforderungen stellen, Fristen verlängern oder den Antrag ablehnen, ein Handelsstart ist damit nicht garantiert. Worldcoin selbst bleibt umstritten: Das Projekt scannt Iris-Muster über sogenannte Orbs, um eine eindeutige digitale Identität zu erzeugen, was Datenschutz- und Sicherheitsfragen aufwirft, die von der Fondsstruktur unberührt bleiben.

Anders als bei Bitcoin, dessen Angebot fest auf 21 Mio. Einheiten programmiert ist, hängt der Wert biometrischer Token wie WLD stärker von zentralen Entscheidungen des Betreibers ab. Wie schnell die SEC den Antrag bearbeitet, bleibt offen.

Wir berichteten über die Kritik an Worldcoins Iris-Scan-Verfahren.

Jonas ist Mitgründer von Krypto Guru und analysiert seit 2019 den Kryptomarkt mit Fokus auf Bitcoin, Makroökonomie und langfristige Markttrends. Seine Schwerpunkte liegen in fundierten Bitcoin Deep Dives, Krypto-Analysen und der verständlichen Einordnung makroökonomischer Entwicklungen. Bei Krypto Guru verantwortet er die strategische Ausrichtung und redaktionelle Qualitätssicherung der Inhalte und bringt dabei auch seine MBA-Expertise ein.