RWAFactory
The RWAFactory contract deploys complete RWA token systems with all required contracts.
Functions​
deployRWASystem​
Deploys a complete RWA system.
function deployRWASystem(
string memory tokenName,
string memory tokenSymbol,
uint256 initialSupply,
DeploymentConfig memory config
) external returns (DeploymentResult memory);
getDeployment​
Returns deployment information.
function getDeployment(address token) external view returns (DeploymentResult memory);
Events​
event RWASystemDeployed(
address indexed token,
address indexed kycRegistry,
address indexed yieldDistributor,
address assetVault
);