github.com/klaytn/klaytn@v1.12.1/node/cn/tracers/testdata/contracts/Factory.sol (about) 1 pragma solidity ^0.5.6; 2 3 contract Factory { 4 function createContract (bytes32 name) public { 5 new Contract(name); 6 } 7 } 8 9 contract Contract { 10 constructor(bytes32 name) public {} 11 }