Skip to content

Commit

Permalink
Bumped from v1.00 to v1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bokkypoobah committed Feb 10, 2018
1 parent 7c34600 commit 42e1fb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/BTTSTokenFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ contract ERC20Interface {


// ----------------------------------------------------------------------------
// Contracts that can have tokens approved, and then a function execute
// Contracts that can have tokens approved, and then a function executed
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}


// ----------------------------------------------------------------------------
// BokkyPooBah's Token Teleportation Service Interface v1.00
// BokkyPooBah's Token Teleportation Service Interface v1.10
//
// Enjoy. (c) BokkyPooBah / Bok Consulting Pty Ltd 2017. The MIT Licence.
// ----------------------------------------------------------------------------
contract BTTSTokenInterface is ERC20Interface {
uint public constant bttsVersion = 100;
uint public constant bttsVersion = 110;

bytes public constant signingPrefix = "\x19Ethereum Signed Message:\n32";
bytes4 public constant signedTransferSig = "\x75\x32\xea\xac";
Expand Down Expand Up @@ -123,7 +123,7 @@ library BTTSLib {
// ------------------------------------------------------------------------
// Constants
// ------------------------------------------------------------------------
uint public constant bttsVersion = 100;
uint public constant bttsVersion = 110;
bytes public constant signingPrefix = "\x19Ethereum Signed Message:\n32";
bytes4 public constant signedTransferSig = "\x75\x32\xea\xac";
bytes4 public constant signedApproveSig = "\xe9\xaf\xa7\xa1";
Expand Down

0 comments on commit 42e1fb8

Please sign in to comment.