/** * Source Code first verified at https://etherscan.io on Friday, March 15, 2019 (UTC) */ pragma solidity ^0.5.0; /**------------------------------------ LAVA Token (0xBTC Token Proxy with Lava Enabled) 0xBTC proxy token contract. ApproveAndCall() 0xBTC to this contract to receive LAVA tokens. Alternatively, Approve() 0xBTC to this contract and then call the mutateTokens() method. Do not directly transfer 0xBTC to this contract using Transfer() or TransferFrom(). LAVA tokens can be spent not just by your account, but by any account as long as they have a lava packet signature, signed by your private key, which validates that specific transaction. A relayer reward can be specified in a signed packet. This means that LAVA can be sent by paying an incentive fee of LAVA to relayers for the gas, not ETH. LAVA is 1:1 pegged to 0xBTC. This contract implements EIP712 for Signing Typed Data: https://github.com/MetaMask/eth-sig-util ------------------------------------*/ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ECRecovery { /** * @dev Recover signer address from a message by using their signature * @param hash bytes32 message, the hash is the signed message. What is recovered is the signer address. * @param sig bytes signature, the signature is generated using web3.eth.sign() */ function recover(bytes32 hash, bytes memory sig) internal pure returns (address) { bytes32 r; bytes32 s; uint8 v; //Check the signature length if (sig.length != 65) { return (address(0)); } // Divide the signature in r, s and v variables assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } // Version of signature should be 27 or 28, but 0 and 1 are also possible versions if (v < 27) { v += 27; } // If the version is correct return the signer address if (v != 27 && v != 28) { return (address(0)); } else { return ecrecover(hash, v, r, s); } } } contract RelayAuthorityInterface { function getRelayAuthority() public returns (address); } contract ERC20Interface { function totalSupply() public view returns (uint); function balanceOf(address tokenOwner) public view returns (uint balance); function allowance(address tokenOwner, address spender) public view returns (uint remaining); function transfer(address to, uint tokens) public returns (bool success); function approve(address spender, uint tokens) public returns (bool success); function transferFrom(address from, address to, uint tokens) public returns (bool success); event Transfer(address indexed from, address indexed to, uint tokens); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); } contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public; } contract LavaToken is ECRecovery{ using SafeMath for uint; address constant public masterToken = 0xB6eD7644C69416d67B522e20bC294A9a9B405B31; string public name = "Lava"; string public symbol = "LAVA"; uint8 public decimals = 8; uint private _totalSupply; event Approval(address indexed src, address indexed ext, uint amt); event Transfer(address indexed src, address indexed dst, uint amt); event Deposit(address indexed dst, uint amt); event Withdrawal(address indexed src, uint amt); mapping (address => uint) public balances; mapping (address => mapping (address => uint)) public allowance; mapping (bytes32 => uint256) public burnedSignatures; struct LavaPacket { string methodName; //approve, transfer, or a custom data byte32 for ApproveAndCall() address relayAuthority; //either a contract or an account address from; //the packet origin and signer address to; //the recipient of tokens address wallet; //this contract address uint256 tokens; //the amount of tokens to give to the recipient uint256 relayerRewardTokens; //the amount of tokens to give to msg.sender uint256 expires; //the eth block number this packet expires at uint256 nonce; //a random number to ensure that packet hashes are always unique (optional) } bytes32 constant LAVAPACKET_TYPEHASH = keccak256( "LavaPacket(string methodName,address relayAuthority,address from,address to,address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce)" ); function getLavaPacketTypehash() public pure returns (bytes32) { return LAVAPACKET_TYPEHASH; } function getLavaPacketHash(string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce) public pure returns (bytes32) { return keccak256(abi.encode( LAVAPACKET_TYPEHASH, keccak256(bytes(methodName)), relayAuthority, from, to, wallet, tokens, relayerRewardTokens, expires, nonce )); } constructor() public { } /** * Do not allow ETH to enter */ function() external payable { revert(); } /** * @dev Deposit original tokens, receive proxy tokens 1:1 * This method requires token approval. * * @param amount of tokens to deposit */ function mutateTokens(address from, uint amount) public returns (bool) { require( amount > 0 ); require( ERC20Interface( masterToken ).transferFrom( from, address(this), amount) ); balances[from] = balances[from].add(amount); _totalSupply = _totalSupply.add(amount); return true; } /** * @dev Withdraw original tokens, burn proxy tokens 1:1 * * * * @param amount of tokens to withdraw */ function unmutateTokens( uint amount) public returns (bool) { address from = msg.sender; require( amount > 0 ); balances[from] = balances[from].sub(amount); _totalSupply = _totalSupply.sub(amount); require( ERC20Interface( masterToken ).transfer( from, amount) ); return true; } //standard ERC20 method function totalSupply() public view returns (uint) { return _totalSupply; } //standard ERC20 method function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } //standard ERC20 method function getAllowance(address owner, address spender) public view returns (uint) { return allowance[owner][spender]; } //standard ERC20 method function approve(address spender, uint tokens) public returns (bool success) { allowance[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } //standard ERC20 method function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } //standard ERC20 method function transferFrom( address from, address to, uint tokens) public returns (bool success) { balances[from] = balances[from].sub(tokens); allowance[from][to] = allowance[from][to].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer( from, to, tokens); return true; } //internal method for transferring tokens to the relayer reward as incentive for submitting the packet function _giveRelayerReward( address from, address to, uint tokens) internal returns (bool success){ balances[from] = balances[from].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer( from, to, tokens); return true; } /* Read-only method that returns the EIP712 message structure to be signed for a lava packet. */ function getLavaTypedDataHash(string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce) public pure returns (bytes32) { // Note: we need to use `encodePacked` here instead of `encode`. bytes32 digest = keccak256(abi.encodePacked( "\x19\x01", // DOMAIN_SEPARATOR, getLavaPacketHash(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce) )); return digest; } /* The internal method for processing the internal data structure of an offchain lava packet with signature. */ function _tokenApprovalWithSignature( string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce, bytes32 sigHash, bytes memory signature) internal returns (bool success) { /* Always allow relaying a packet if the specified relayAuthority is 0. If the authority address is not a contract, allow it to relay If the authority address is a contract, allow its defined 'getAuthority()' delegate to relay */ require( relayAuthority == address(0x0) || (!addressContainsContract(relayAuthority) && msg.sender == relayAuthority) || (addressContainsContract(relayAuthority) && msg.sender == RelayAuthorityInterface(relayAuthority).getRelayAuthority()) ); address recoveredSignatureSigner = recover(sigHash,signature); //make sure the signer is the depositor of the tokens require(from == recoveredSignatureSigner); //make sure this is the correct 'wallet' for this packet require(address(this) == wallet); //make sure the signature has not expired require(block.number < expires); uint previousBurnedSignatureValue = burnedSignatures[sigHash]; burnedSignatures[sigHash] = 0x1; //spent require(previousBurnedSignatureValue == 0x0); //relayer reward tokens, has nothing to do with allowance require(_giveRelayerReward(from, msg.sender, relayerRewardTokens)); //approve transfer of tokens allowance[from][to] = tokens; emit Approval(from, to, tokens); return true; } function approveTokensWithSignature(string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce, bytes memory signature) public returns (bool success) { require(bytesEqual('approve',bytes(methodName))); bytes32 sigHash = getLavaTypedDataHash(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce); require(_tokenApprovalWithSignature(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce,sigHash,signature)); return true; } function transferTokensWithSignature(string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce, bytes memory signature) public returns (bool success) { require(bytesEqual('transfer',bytes(methodName))); //check to make sure that signature == ecrecover signature bytes32 sigHash = getLavaTypedDataHash(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce); require(_tokenApprovalWithSignature(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce,sigHash,signature)); //it can be requested that fewer tokens be sent that were approved -- the whole approval will be invalidated though require(transferFrom( from, to, tokens)); return true; } /* Approve LAVA tokens for a smart contract and call the contracts receiveApproval method in a single packet transaction. Uses the methodName as the 'bytes' for the fallback function to the remote contract */ function approveAndCallWithSignature( string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce, bytes memory signature ) public returns (bool success) { require(!bytesEqual('approve',bytes(methodName)) && !bytesEqual('transfer',bytes(methodName))); //check to make sure that signature == ecrecover signature bytes32 sigHash = getLavaTypedDataHash(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce); require(_tokenApprovalWithSignature(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce,sigHash,signature)); _sendApproveAndCall(from,to,tokens,bytes(methodName)); return true; } function _sendApproveAndCall(address from, address to, uint tokens, bytes memory methodName) internal { ApproveAndCallFallBack(to).receiveApproval(from, tokens, masterToken, bytes(methodName)); } /* Burn the signature of an off-chain transaction packet so that it cannot be used on-chain. Only the creator of the packet can call this method as msg.sender. */ function burnSignature( string memory methodName, address relayAuthority,address from,address to, address wallet,uint256 tokens,uint256 relayerRewardTokens,uint256 expires,uint256 nonce, bytes memory signature) public returns (bool success) { bytes32 sigHash = getLavaTypedDataHash(methodName,relayAuthority,from,to,wallet,tokens,relayerRewardTokens,expires,nonce); address recoveredSignatureSigner = recover(sigHash,signature); //make sure the invalidator is the signer require(recoveredSignatureSigner == from); //only the original packet owner can burn signature, not a relay require(from == msg.sender); //make sure this signature has never been used uint burnedSignature = burnedSignatures[sigHash]; burnedSignatures[sigHash] = 0x2; //invalidated require(burnedSignature == 0x0); return true; } /* Check the burn status of the SHA3 hash of a packet signature. Signatures are burned whenever they are used for a transaction or whenever the burnSignature() method is called. */ function signatureHashBurnStatus(bytes32 digest) public view returns (uint) { return (burnedSignatures[digest]); } /* Receive approval from ApproveAndCall() to mutate tokens. This method allows 0xBTC to be mutated into LAVA using a single method call. */ function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public returns (bool success) { require(token == masterToken); require(mutateTokens(from, tokens)); return true; } function addressContainsContract(address _to) view internal returns (bool) { uint codeLength; assembly { // Retrieve the size of the code on target address, this needs assembly . codeLength := extcodesize(_to) } return (codeLength>0); } function bytesEqual(bytes memory b1,bytes memory b2) pure internal returns (bool) { if(b1.length != b2.length) return false; for (uint i=0; i