// Total sales recorded by the protocol converted in the chains "native" currency
function grossNetworkProduct() external view returns(uint);
// The address of the public lock template, used when `createLock` is called
function publicLockAddress() external view returns(address);
// The WETH token address, used for value calculations
function weth() external view returns(address);
// The UDT token address, used to mint tokens on referral
function udt() external view returns(address);
// The approx amount of gas required to purchase a key
function estimatedGasForPurchase() external view returns(uint);
// The version number of the current Unlock implementation on this network
function unlockVersion() external pure returns(uint16);
// Returns the address of the current owner
function owner() external view returns(address);
// Returns the oracle address for a token address
function uniswapOracles(address) external view returns(address);