View ERC20 SKXLU
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); |
View Sukuk Smart Contract
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 { |
View CXCMurabahaSmartContract.sol
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 { |