Demo uses minimal proxy clones to cut energy use when deploying repeated TRON smart contracts at scale.
CREATE2-style deployment enables precomputed TRON contract addresses using deployer, salt, and bytecode.
TRON DAO ecosystem developers have published a demo that applies minimal proxy contracts and deterministic deployment to repeated smart contract creation on the TRON network.
Full-contract deployment of every instance makes the network more energy-consuming and expensive to deploy. The demo separates instances and logic with the use of the clone pattern.
Therefore, one implementation contract holds the executable code, while each instance is a small proxy that forwards calls to the implementation through delegatecall and maintains its own storage.
https://t.co/OrfvU8pOwb
— TRON DAO (@trondao) January 12, 2026
In the proxy flow, a team deploys the implementation once, then uses a factory to create new proxy instances as needed. Every clone acts as an independent contract,