Standards note

Toward a Solana-Native Vault Standard / sRFC-40

A standards note on the emerging Solana vault standard direction, asynchronous vault flows, reference implementation status, and adoption gates.

Matariki Research4 min readPublished 10 July 2026
VaultsProgram InterfacesSolanaTokenized AssetsERC-4626ERC-7540Solana Vault Reference Implementation

Executive summary

A Solana-native vault standard is useful because vault integrations are otherwise expensive to diligence and hard to compose. The public Solana Foundation vault repository points toward a reference implementation inspired by asynchronous vault standards, but it should be treated as emerging infrastructure. A credible article must avoid implying finality, audit status, mainnet adoption, or private authorship beyond public evidence.

Problem or question

Vault standards reduce integration cost by giving wallets, analytics systems, allocators, and protocols predictable behavior. Ethereum has ERC-4626 for tokenized vaults and ERC-7540 for asynchronous request flows. Solana needs similar predictability, but its program/account model means the standard must describe account relationships, authorities, factories, instructions, and extension points, not only function names.

System or market context

The Solana Foundation vault repository describes a vault standard suite and reference implementation. The same public materials state that it is not audited for mainnet use and not deployed to mainnet-beta. ERC-4626 standardizes vault shares and asset/share conversions for ERC-20 assets. ERC-7540 extends the model for asynchronous deposits and redemptions, which better matches many fund and RWA workflows.

Design or analytical framework

A Solana vault standard should cover the vault program, vault state, share mint, underlying asset accounts, request accounts, authority model, fee and NAV policy, extension hooks, and conformance tests. The institutional path is often asynchronous: subscribe, wait for acceptance or settlement, claim shares; request redemption, wait for fulfillment, claim assets. Those transitions need explicit account state and failure behavior.

Trade-offs and failure modes

A minimal core keeps the standard adaptable but can leave integrators guessing about optional behavior. A large standard improves uniformity but may freeze immature patterns. Async flows match operations but add UX and state complexity. Reference implementations can accelerate adoption but create false confidence if unaudited. Composability breaks when downstream protocols assume synchronous ERC-4626 semantics for a vault that actually has request queues.

Practical implications

Teams should identify whether they need synchronous DeFi vault behavior, asynchronous fund behavior, or a hybrid. They should not ship against a reference implementation without audit, threat model, and operational controls. Public documentation should state who can change fees, pause requests, manage assets, and fulfill queues. Conformance tests and SDKs are as important as prose standards.

Verification note

The standardization work also needs a migration story. Vault products often live longer than their first implementation, and institutional users need to know how a vault can change without breaking share accounting or redemption rights. A Solana-native approach should make upgrade authority, factory ownership, share mint authority, extension configuration, and emergency controls visible. That does not require every vault to use the same governance model. It does require integrators to know which assumptions they are relying on. A standard that clarifies those controls will reduce diligence cost more than a standard that only names deposit and withdrawal instructions.

Review discipline

Vault standards require review as code and market practice evolve. A reference implementation can change, an sRFC discussion can move, and early adopter behavior can create de facto requirements before the formal standard settles. Teams building against a draft direction should keep an explicit compatibility record: commit or release used, unsupported behaviors, audit status, authority model, and migration path. That record protects integrators from assuming that a promising reference has become a settled production standard.

Conclusion

The right direction is Solana-native standardization informed by ERC-4626 and ERC-7540, not direct imitation. A useful vault standard will make account graphs, request states, authority controls, and integration expectations explicit. Until public standards and implementations mature, teams should present this as work toward a standard rather than settled market infrastructure.

References

  1. solana-foundation/vaultSolana Foundation.
  2. What is ERC4626 on Solana?Solana Foundation.
  3. ERC-4626 Tokenized VaultsEthereum Improvement Proposals.
  4. ERC-7540 Asynchronous ERC-4626 Tokenized VaultsEthereum Improvement Proposals.
  5. sRFC forum categorySolana Developer Forums.

Related

Related work