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.12; | |
// ---------------------------------------------------------------------------- | |
// ERC Token Standard #20 Interface | |
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md | |
// ---------------------------------------------------------------------------- | |
contract ERC20Interface { | |
function totalSupply() public view returns (uint); |
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.12; | |
import './DateTime.sol'; | |
import './SignedSafeMath.sol'; | |
//---------------------------------------------------------------------------- | |
// CXC Sukuk Smart Contract - signed integer | |
//---------------------------------------------------------------------------- | |
contract CXCSukuk is DateTime { |
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.12; | |
import './DateTime.sol'; | |
import './SignedSafeMath.sol'; | |
//---------------------------------------------------------------------------- | |
// CXC Murabaha Smart Contract - Signed integer | |
//---------------------------------------------------------------------------- | |
contract CXCMurabaha is DateTime { |