github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/execution/wasm/child.sol (about) 1 pragma solidity >0.6.3; 2 3 contract Child { 4 5 address public owner; // public, so you can see it when you find the child 6 7 constructor() public { 8 owner = msg.sender; 9 } 10 }