pragma solidity ^0.5.11;/// @title HelloMultiBaas/// @dev Hello MultiBaas sample contractcontract HelloMultiBaas {address public owner;string public phrase;/// @dev Sets the default phrase upon deploymentconstructor()public {owner = msg.sender;phrase = "Hello MultiBaas";}/// @dev Changes the public phrasefunctionchangePhrase(string calldata _phrase)external onlyOwner {phrase = _phrase;}/// @dev Reverts if called by any account other than the owner.modifier onlyOwner(){if(msg.sender != owner){revert();}_;}}// Copyright (c) 2020 Curvegrid Inc.
pragma solidity ^0.5.11;/// @title HelloMultiBaas/// @dev Hello MultiBaas sample contractcontract HelloMultiBaas {address public owner;string public phrase;/// @dev Sets the default phrase upon deploymentconstructor()public {owner = msg.sender;phrase = "Hello MultiBaas";}/// @dev Changes the public phrasefunctionchangePhrase(string calldata _phrase)external onlyOwner {phrase = _phrase;}/// @dev Reverts if called by any account other than the owner.modifier onlyOwner(){if(msg.sender != owner){revert();}_;}}// Copyright (c) 2020 Curvegrid Inc.
pragma solidity ^0.5.11;/// @title HelloMultiBaas/// @dev Hello MultiBaas sample contractcontract HelloMultiBaas {address public owner;string public phrase;/// @dev Sets the default phrase upon deploymentconstructor()public {owner = msg.sender;phrase = "Hello MultiBaas";}/// @dev Changes the public phrasefunctionchangePhrase(string calldata _phrase)external onlyOwner {phrase = _phrase;}/// @dev Reverts if called by any account other than the owner.modifier onlyOwner(){if(msg.sender != owner){revert();}_;}}// Copyright (c) 2020 Curvegrid Inc.