TOKEN STANDARDS / RWA-4626
RWA-4626
YIELD VAULT
DRAFT
ABSTRACT
Tokenized vault wrapper distributing coupon and rental yield from underlying assets, compatible with ERC-4626 integrations.
AT A GLANCE
INTERFACE
interface IRWA4626 is IERC4626 {
/// @notice Distribute a coupon or rental payment to holders pro rata.
function distribute(uint256 amount) external;
/// @notice Net asset value per share, published by the issuer oracle.
function navPerShare() external view returns (uint256);
function claimable(address holder) external view returns (uint256);
}
REFERENCE IMPLEMENTATION
Reference implementations live in the network's open-source repository under contracts/src. Deploy with Foundry or Hardhat — the standard compiles against any EVM toolchain.