Ship or Die at Accelerate 2025: Compliant Onchain Products
Learn how to build compliant on-chain products on Solana with insights from Exo Technologies' Taylor Johnson
In a groundbreaking presentation at Accelerate 2025, Taylor Johnson, founding partner of Exo Technologies, unveils the intricacies of building compliant on-chain products on Solana. This deep dive into tokenization and compliance strategies offers a glimpse into the future of blockchain-based financial applications, particularly for real-world assets (RWAs).
Summary
Taylor Johnson's presentation at Accelerate 2025 provides a comprehensive overview of building compliant on-chain products on the Solana blockchain. With his background in fraud and compliance infrastructure for centralized exchanges and experience in building financial applications on Solana since 2020, Johnson offers valuable insights into the tokenization process and compliance mechanisms.
The talk begins by explaining the two existing token programs on Solana: the original token program and Token 2022. Johnson highlights the differences between these programs, emphasizing the flexibility and extensibility of Token 2022, which allows for customized transfer logic and metadata.
A significant portion of the presentation focuses on on-chain compliance, discussing robust access control, KYC implementation methods, and asset seizure capabilities. Johnson also introduces the concept of composable compliance through a Solana attestation service, potentially revolutionizing how KYC data is managed and shared across DeFi protocols.
The presentation concludes with real-world examples of compliant products built on Solana, showcasing how different teams have implemented these concepts to create US and Singapore-registered tokenization platforms for real-world assets.
Key Points:
Tokenization on Solana
Solana's tokenization process is unique compared to other blockchain ecosystems. Unlike platforms that require contract deployment for token creation, Solana allows tokens to be launched by simply calling an instruction. This streamlined process is facilitated by two existing token programs: the original token program and Token 2022.
The original token program boasts full ecosystem support, meaning all DeFi protocols can interact with tokens created using this program. However, it lacks flexibility in terms of customization and is immutable, preventing future upgrades.
Token 2022, on the other hand, offers extensible token logic and is mutable and upgradable. This program allows for the addition of custom logic to transfer instructions and supports various token extensions. These extensions serve as composable building blocks, enabling developers to implement pre-existing logic safely and efficiently when creating new products on Solana.
On-Chain Compliance
On-chain compliance is a critical aspect of building financial products on blockchain networks, especially when dealing with real-world assets. Johnson emphasizes the importance of robust access control in tokenization strategies. This involves ensuring that only authorized individuals can perform specific actions, such as updating KYC information or moving liquidity.
Implementing granular and flexible access control reduces risk by limiting exposure to critical infrastructure. This approach is particularly crucial for products that need to adhere to strict regulatory requirements.
Johnson discusses two primary methods for implementing KYC (Know Your Customer) on Solana: transfer hooks and the unfreeze action. Transfer hooks allow for on-chain storage of KYC data and can check both parties' KYC status during a transfer. However, this method may limit protocol integrations. The unfreeze action, using a freeze authority, doesn't store data on-chain but allows for off-chain KYC processes to determine which accounts should be frozen or unfrozen.
Asset seizure capabilities are another important aspect of compliance, particularly for dealing with sanctioned entities. Johnson introduces the permanent delegate extension, which allows admins to control user-owned accounts, transfer tokens, or burn them as needed.
Composable Compliance and Real-World Examples
Johnson introduces the concept of composable compliance through a Solana attestation service developed by ExoTech. This service allows for the creation of custom schemas for KYC data, enabling institutions like centralized exchanges to attest to wallet KYC status. This information can then be used by other DeFi protocols, creating a transparent record of KYC'd wallets.
The presentation concludes with examples of teams that have successfully built compliant products on Solana. Securitize, a US-registered securities tokenization platform, implements robust access control and a flexible token policy engine to enforce transfer restrictions. Another example is a Singaporean-registered tokenization platform that uses approved rules for deposit redemption and supports token clawbacks with permanent delegate extensions.
Facts + Figures
- Solana has two token programs: the original token program and Token 2022
- Token 2022 offers extensible token logic and is mutable and upgradable
- There are about a dozen token extensions available for Token 2022
- ExoTech has developed a Solana attestation service for composable compliance
- Securitize is a US-registered securities tokenization platform built on Solana
- A Singaporean-registered tokenization platform uses approved rules for deposit redemption and supports token clawbacks
- Taylor Johnson has been building financial applications on Solana since 2020
- Programs built by Johnson's team have secured hundreds of millions of dollars on-chain
Top quotes
- "On Solana, there are two existing token programs. The original token program and token 2022."
- "These are composable building blocks that allow to use pre-existing logic. They don't have to build yourself to build whatever types of products that you want onto Solana."
- "We need to make sure that only the folks that can interact with the-- you know, update KYC information or updating it, only fund managers can move liquidity around, et cetera."
- "Another important compliance is asset seizure. If you have some wallet that is now determined, it isn't a sanctioned country or something like that, you need to make sure that you can claw back the assets."
- "This is a generalized attestation service that could be used for multiple things, but here we show an example of KYC where you can set up custom schemas to decide what information you want to test to."
Questions Answered
What are the two token programs on Solana?
Solana has two token programs: the original token program and Token 2022. The original token program has full ecosystem support but lacks flexibility and is immutable. Token 2022, on the other hand, offers extensible token logic, is mutable and upgradable, and allows for customization of transfer instructions and metadata. This newer program provides more options for developers building complex financial products on Solana.
How does tokenization work on Solana compared to other blockchains?
Tokenization on Solana is uniquely streamlined compared to other blockchain ecosystems. On Solana, no contract deployment is necessary to launch a token. Instead, developers simply call an instruction to create their token. This process is facilitated by the existing token programs, allowing for rapid and efficient token creation without the need to write and deploy custom smart contracts for each new token.
What are token extensions in Solana's Token 2022 program?
Token extensions in Solana's Token 2022 program are composable building blocks that allow developers to use pre-existing logic when creating new tokens or financial products. These extensions provide safe, pre-built functionality that can be easily integrated into new projects. Examples include transfer hooks for custom transfer logic and permanent delegate extensions for asset seizure capabilities. By using these extensions, developers can quickly implement complex features without having to build everything from scratch.
How can KYC be implemented on Solana?
KYC (Know Your Customer) can be implemented on Solana in two primary ways: through transfer hooks or using the unfreeze action. Transfer hooks allow for on-chain storage of KYC data and can check both parties' KYC status during a transfer. This method provides transparency but may limit protocol integrations. The unfreeze action uses a freeze authority and relies on off-chain processes to determine which accounts should be frozen or unfrozen based on their KYC status. This method doesn't store data on-chain but may be more flexible in terms of protocol integration.
What is composable compliance, and how does it work on Solana?
Composable compliance on Solana refers to the ability to create and use standardized compliance mechanisms across different protocols and applications. ExoTech has developed a Solana attestation service that exemplifies this concept. The service allows for the creation of custom schemas for KYC data, enabling institutions like centralized exchanges to attest to wallet KYC status. This information can then be used by other DeFi protocols, creating a transparent and interoperable compliance layer across the Solana ecosystem.
How can asset seizure be implemented in compliant on-chain products?
Asset seizure capabilities can be implemented in compliant on-chain products using the permanent delegate extension in Solana's Token 2022 program. This extension allows an admin to control user-owned accounts, giving them the ability to transfer or burn tokens as needed. This feature is crucial for dealing with situations where an account is determined to be in a sanctioned country or involved in illicit activities. However, it's important to note that implementing this feature may limit integration with some protocols.
What are some examples of compliant products built on Solana?
Two notable examples of compliant products built on Solana are Securitize and a Singaporean-registered tokenization platform. Securitize, a US-registered securities tokenization platform, implements robust access control and a flexible token policy engine to enforce transfer restrictions. The Singaporean platform uses approved rules for deposit redemption, allowing fund managers to control which wallets can redeem real-world assets. It also supports token clawbacks with permanent delegate extensions and uses transfer hooks for KYC validation across every transfer.
Comments
Please login to leave a comment.
On this page
- Summary
- Key Points:
- Facts + Figures
- Top quotes
-
Questions Answered
- What are the two token programs on Solana?
- How does tokenization work on Solana compared to other blockchains?
- What are token extensions in Solana's Token 2022 program?
- How can KYC be implemented on Solana?
- What is composable compliance, and how does it work on Solana?
- How can asset seizure be implemented in compliant on-chain products?
- What are some examples of compliant products built on Solana?
Related Content
When Will Companies IPO Onchain?
Lucas Bruder, Max Resnick & Austin Federa discuss how close Solana is to hosting major IPOs, the $3.2B Figma pricing disaster, and why onchain capital markets are inevitable.
Lightspeed - How To Fix Crypto's Token Dilemma
Deep dive into Solana's evolving DEX landscape, prop AMMs dominance, the STAMP token model, and why onchain equities may reshape crypto trading in 2025
Launching Crypto's Largest Tokenized Fund On Solana | Michael Sonnenshein
Former Grayscale CEO discusses the future of tokenized assets, institutional demand for Solana, and the groundbreaking BUIDL fund launch
Why Crypto Governance Sucks | Chase Chapman, David Phelps
Explore how crypto governance can be revolutionized by making it more engaging, addictive, and user-centric. Learn from experts Chase Chapman and David Phelps on the future of digital communities.
Tokenization: Where Solana's Tokenization Push Stands — and Where It's Going Next
Securitize announces native RWA lending market on Solana with Apollo. Learn why 20% of RWA holders are on Solana but only 3% of capital—and how that's changing.
Breakpoint 2024: Product Keynote: Legion.cc: Bringing Back ICOs
Legion.cc launches regulatory-compliant ICOs on Solana, promising fair access and accountability in crypto fundraising
Ship or Die at Accelerate 2025: Tokenization of Capital Markets (Nathan Allman - Ondo Finance)
Ondo Finance's Nathan Allman reveals groundbreaking plans for tokenizing public securities on Solana
Ship or Die Accelerate 2025: Entering the Era of Crypto Mainstream Adoption
Fireblocks CEO reveals explosive growth in crypto adoption, with stablecoins and tokenization leading the charge
Breakpoint 2023: Bringing Offchain Assets Onchain
This video covers a panel discussion on the integration of real-world assets with blockchain technology and the various advancements it brings.
Validated | Bringing Real World Assets On Chain
Discover how Parcl is revolutionizing real estate investment on Solana, creating a spot market for property prices and addressing challenges in bringing real-world assets on-chain.
Building an investment DAO in Star Atlas & buying a $5M space ship w/ Craig Founder @SuperPhoenixDAO
Discover how SuperPhoenixDAO is creating innovative investment opportunities and social experiences in Star Atlas, leveraging Solana's blockchain technology to bridge gaming ecosystems.
Product Keynote: Keel
Keel announces largest single RWA placement on Solana with $500M allocation, attracting 40+ major asset managers
Ship or Die at Accelerate 2025: Hello and Welcome
Solana's biggest US event yet: 3,000 attendees, two stages, and a glimpse into the future of blockchain
SEC Commissioner Hester Peirce: A New Era For Crypto In The U.S
SEC Commissioner Hester Peirce discusses the regulatory pivot on crypto, liquid staking clarity, tokenized equities, and what builders should do now to capitalize on this historic moment.
Fireside: Anchorage Digital (Sergio Mello), Solana Foundation (Nick Ducoff)
Anchorage Digital reveals how stablecoins will reach trillions in value, why institutions are choosing Solana, and how the Genius Act is reshaping global finance
Solana Token Markets
