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
0xbc286E74Da7C1eDaAc1855143E2099436f29201B |
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.4.6; | |
import "./owned.sol"; | |
import "./priceTicker.sol"; | |
contract tokenRecipient { | |
function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); | |
} | |
contract Hedge is owned { |
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
0xd1ce3920cB68f02f33B22c0ECa874cEd6d2cc841 |
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
0xd1ce3920cB68f02f33B22c0ECa874cEd6d2cc841 |
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.4.15; | |
/* | |
* @title CDRCalculator | |
* @description helper functions used to calculate CDR for voters | |
* @notes When pure keyword is supported all functions are pure, | |
* when libraries are expanded this would be a good candidate. | |
* for now the additional complexity of linking doesn't outweigh the ease of | |
* an inheritance based approach | |
*/ |
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
0x7433F38495f9DFDdf67701066218dD58dCE247b9 |
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.4.9; | |
contract StockPurchase { | |
address public VNT; | |
string public Agreement = "https://gateway.ipfs.io/ipfs/QmVp1R6yEJARm6mrGTzSpU8Lo4QGk4ZQbxWMRcniUQJS4z"; | |
string public auth = "When execute() is called the Vega Network is digitally signing the Ageement."; | |
function execute() public constant returns (string) { |
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
0xAF89b0FcFd3aFA194B61504eF07fB5ce74E65069 |