This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
node: | |
container_name: node | |
image: gcr.io/gochain-core/gochain:${GOCHAIN_IMAGE:-latest} | |
ports: | |
# Netstats | |
- "80:80" | |
# Proxy | |
- "8545:8000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.2; | |
contract Bryan{ | |
struct Data { mapping(uint => Fund) list; } | |
struct Fund { | |
address[] investorList; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.2; | |
contract Jayper{ | |
uint8 variable = 10; | |
function testFunction() external { | |
variable = 5; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.2; | |
contract Kreaan{ | |
struct Something { | |
string greeting; | |
string name; | |
} | |
mapping ( uint8 => Something) internal aMap; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.1; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
import "./TokenFactory.sol"; | |
import "./Storage.sol"; | |
contract BCFactory is Owned, Storage { |
NewerOlder