> ## Documentation Index
> Fetch the complete documentation index at: https://blog.loopscale.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ACRED RWA Looping: USDG Subscriptions Now Live

export const XEmbed = ({url, options = {}}) => {
  const containerRef = useRef(null);
  useEffect(() => {
    const renderTweet = () => {
      if (containerRef.current) {
        containerRef.current.innerHTML = '';
        const tweetId = url.split('/').pop().split('?')[0];
        const embedOptions = {
          theme: 'light',
          align: 'center',
          ...options
        };
        window.twttr.widgets.createTweetEmbed(tweetId, containerRef.current, embedOptions).catch(err => console.error("Failed to embed tweet ${url}:", err));
      }
    };
    const onScriptLoad = () => {
      window.twttr.ready(() => renderTweet());
    };
    if (window.twttr?.widgets) {
      onScriptLoad();
      return;
    }
    const scriptId = 'twitter-wjs';
    let script = document.getElementById(scriptId);
    document.addEventListener('twitter-widget-loaded', onScriptLoad);
    if (!script) {
      script = document.createElement('script');
      script.id = scriptId;
      script.src = 'https://platform.twitter.com/widgets.js';
      script.async = true;
      script.onload = () => {
        document.dispatchEvent(new CustomEvent('twitter-widget-loaded'));
      };
      script.onerror = error => {
        console.error('Failed to load Twitter widget script:', error);
      };
      document.head.appendChild(script);
    }
    return () => {
      document.removeEventListener('twitter-widget-loaded', onScriptLoad);
    };
  }, [url, options]);
  return <div ref={containerRef} className="x-embed" />;
};

export const MetadataCard = ({author_id, date}) => {
  const authors = {
    loopscale: {
      name: 'Loopscale',
      avatar: '/static/assets/favicon.svg'
    },
    devin: {
      name: 'Devin Black',
      avatar: '/static/assets/authors/devin.png'
    },
    mary: {
      name: 'Mary Gooneratne',
      avatar: '/static/assets/authors/mary.png'
    },
    luke: {
      name: 'Luke Truitt',
      avatar: '/static/assets/authors/luke.png'
    },
    logan: {
      name: 'Logan',
      avatar: '/static/assets/authors/logan.webp'
    }
  };
  const author = authors[author_id] || authors['loopscale'];
  return <div className="metadata-card">
      <div className="metadata-author">
        <img className="metadata-author-avatar" src={author.avatar} alt={author.name} style={{
    pointerEvents: 'none'
  }} />
        <p className="metadata-author-name">{author.name}</p>
      </div>
      <p className="metadata-date">{date}</p>
    </div>;
};

<MetadataCard author_id="devin" date="January 16, 2026" />

<img src="https://mintcdn.com/loopscale2/jKpgtqsAcCYny30i/static/assets/images/acred.webp?fit=max&auto=format&n=jKpgtqsAcCYny30i&q=85&s=eabcaef7601d3c900d5051760f237ef6" alt="" width="2400" height="1350" data-path="static/assets/images/acred.webp" />

## ACRED RWA Looping: USDG Subscriptions Now Live

The [Securitize Tokenized Apollo Diversified Credit Fund (ACRED)](https://securitize.io/primary-market/apollo-diversified-credit-securitize-fund) has been live on Loopscale for two months now, as collateral for borrow and for leverage via real-world asset (RWA) looping.

ACRED is a tokenized feeder fund launched and managed by Securitize that provides investors access to the Apollo Diversified Credit Fund, a diversified global credit strategy investing across corporate direct lending, asset-backed lending, performing credit and dislocated credit.

For assets like ACRED, Loopscale pairs permissionless liquidity with permissioned collateral. Through this model, any holders of USDG can lend [Global Dollar USDG](https://globaldollar.com/) into the RWA Vault, while verified, accredited borrowers access fixed-rate loans against ACRED collateral.

<XEmbed url="https://x.com/Loopscale/status/1989363073954832509" />

**This is how we bring institutional assets onto onchain credit rails.**

As of now, \$6.855M of ACRED is currently deposited into the ACRED / USDG Loop on Loopscale, with \$6.024M USDG lent against ACRED via Loopscale's RWA USDG Vault.

## New: Subscribe to ACRED Directly with USDG

Previously, ACRED subscriptions were processed exclusively in USDC. Now, users can subscribe and deposit using USDG directly, eliminating the need for a USDC -> USDG swap and avoiding potential associated slippage and fees.

By removing a swap from the looping process, **there is now a material execution improvement for users opening or closing positions in size**. This makes a difference with an institutional-grade asset like ACRED, where even a few basis points matter in execution.

## Why Credit Matters for Tokenized Real-World Assets

Tokenization comes first. The next phase is credit.

Issuers need credit infrastructure that will scale RWAs onchain. A tokenized asset sitting on-chain is only half the story; the real value is unlocked when that asset becomes functional collateral, with opportunity for leverage via looping and other structured products.

Loopscale’s **fixed-rate, fixed-duration loans and per-collateral pricing** are key in unlocking productive use of these assets onchain.

<XEmbed url="https://x.com/marygooneratne/status/2009272953041453524" />

This is the future of RWAs on Solana: a shift from simple issuance to deep utility.
