T-REX Factory Interface
struct TokenDetails {
address owner; // Address of the owner of all contracts
string name; // Name of the token
string symbol; // Symbol / ticker of the token
uint8 decimals; // Decimals of the token (can be between 0 and 18)
address irs; // Identity registry storage address
address ONCHAINID; // ONCHAINID of the token
address[] irAgents; // List of agents of the identity registry
address[] tokenAgents; // List of agents of the token
address[] complianceModules; // Modules to bind to the compliance
bytes[] complianceSettings; // Settings calls for compliance modules
}struct ClaimDetails {
uint256[] claimTopics; // Claim topics required
address[] issuers; // Trusted issuers addresses
uint256[][] issuerClaims; // Claims that issuers are allowed to emit
}Last updated