DocumentationOpen App
On this pageSecuritizeRWAFactory — authorization registry

Securitize DS Token Registration

The SecuritizeRWAFactory is the authorization registry for Securitize-enabled Credit Accounts. It records who may operate each Credit Account and the SecuritizeWallet through which calls are executed.

The integration uses three different addresses for one investor position:

AddressWhat it is
InvestorThe external address recognized by Securitize. It signs registration authorizations and submits actions to the SecuritizeRWAFactory.
SecuritizeWalletA contract deployed for one position. Gearbox records it as the Credit Account's owner, or borrower.
CreditAccountA separate Gearbox contract that holds the position's collateral and debt.

SecuritizeRWAFactory — authorization registry

For each Credit Account, the SecuritizeRWAFactory records its SecuritizeWallet, authorized investor, and frozen status. Before forwarding a multicall, it checks that the caller is that investor and the Credit Account is not frozen.

This is operational authorization, not Gearbox ownership. The Credit Manager records the SecuritizeWallet as the Credit Account's borrower.

Freezing Credit Accounts and reassigning investor control are covered separately in Securitize Admin.

When DS token eligibility is checked

DS token eligibility is checked when the contracts are registered for a specific DS token. The SecuritizeDegenNFT first checks through that token's VaultRegistrar that the investor is registered. Because the SecuritizeDegenNFT has the registrar's operator role, it can then register the CreditAccount and SecuritizeWallet contract addresses as vaults belonging to that investor.

Changes to investor eligibility

Gearbox does not automatically remove DS token registrations, freeze CreditAccount contracts, or reassign them when an investor's Securitize eligibility changes. The SecuritizeRWAFactory continues to recognize the recorded investor until a Securitize operator freezes or reassigns the CreditAccount. The DS token continues to apply its current registry rules to transfers.

Sources