Factory

Factory Actions

Transactional Functions

FactoryAction Contract

FactoryAction.sol contract is used to create smart contract instances.

function cloneContract(address target, string memory contractName, string memory pointer, address user, bool UBP)

Process:

  • Validates the target contract.

  • Performs EVM assembly operations to create a new contract clone.

  • Stores the new contract address based on whether it's a user blueprint or an arbitrary contract instance.

Last updated