Transaction Hash:
Block:
4353658 at Oct-10-2017 02:33:18 PM +UTC
Transaction Fee:
0.002671125 ETH
$5.21
Gas Used:
106,845 Gas / 25 Gwei
Emitted Events:
| 44 |
AirSwapToken.Transfer( _from=0x0B7BDe66Ae610c48E576671DB31739E3943c2D38, _to=[Sender] 0x254c62b0e0862a383dbba455dcf692e71fadcebf, _value=33000000 )
|
| 45 |
AirSwapExchange.Filled( makerAddress=0x0B7BDe66Ae610c48E576671DB31739E3943c2D38, makerAmount=33000000, makerToken=AirSwapToken, takerAddress=[Sender] 0x254c62b0e0862a383dbba455dcf692e71fadcebf, takerAmount=3300000000000000000, takerToken=0x00000000...000000000, expiration=1507653152, nonce=5187946183 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x0B7BDe66...3943c2D38 | 1,220.999579038999999978 Eth | 1,224.299579038999999978 Eth | 3.3 | ||
| 0x254c62B0...71FadCEbf |
3.376296277 Eth
Nonce: 20
|
0.073625152 Eth
Nonce: 21
| 3.302671125 | ||
| 0x27054b13...2d47eA75a | |||||
| 0x8fd31210...880b467b7 | (AirSwap: V1 DEX Swap) | ||||
|
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 267.542966683764713186 Eth | 267.545637808764713186 Eth | 0.002671125 |
Execution Trace
ETH 3.3
AirSwapExchange.fill( makerAddress=0x0B7BDe66Ae610c48E576671DB31739E3943c2D38, makerAmount=33000000, makerToken=0x27054b13b1B798B345b591a4d22e6562d47eA75a, takerAddress=0x254c62B0E0862a383DBBa455dCF692E71FadCEbf, takerAmount=3300000000000000000, takerToken=0x0000000000000000000000000000000000000000, expiration=1507653152, nonce=5187946183, v=28, r=08308AE4E05067E92CF0AC08C6159AB1624B4C532654199674ACCD5E77EAD8C8, s=155A9B680FEF7B0B258F91497A81390100412B8F1F181DBE2C0E7EC448D077D7 )
-
Null: 0x000...001.afb164fa( ) -
AirSwapToken.transferFrom( _from=0x0B7BDe66Ae610c48E576671DB31739E3943c2D38, _to=0x254c62B0E0862a383DBBa455dCF692E71FadCEbf, _value=33000000 ) => ( success=True )
- ETH 3.3
0x0b7bde66ae610c48e576671db31739e3943c2d38.CALL( )
File 1 of 2: AirSwapExchange
File 2 of 2: AirSwapToken
pragma solidity ^0.4.11;
// See the Github at https://github.com/airswap/contracts
// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/issues/20
contract Token {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base contract since public getter functions are not
currently recognised as an implementation of the matching abstract
function by the compiler.
*/
/// total amount of tokens
uint256 public totalSupply;
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance);
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) returns (bool success);
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of tokens to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) returns (bool success);
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
/* Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20 */
contract ERC20 is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) public balances; // *added public
mapping (address => mapping (address => uint256)) public allowed; // *added public
}
/** @title AirSwap exchange contract.
* Assumes makers and takers have approved this contract to access their balances.
*/
contract AirSwapExchange {
// Mapping of order hash to bool (true = already filled).
mapping (bytes32 => bool) public fills;
// Events that are emitted in different scenarios.
event Filled(address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
event Canceled(address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
/** Event thrown when a trade fails
* Error codes:
* 1 -> 'The makeAddress and takerAddress must be different',
* 2 -> 'The order has expired',
* 3 -> 'This order has already been filled',
* 4 -> 'The ether sent with this transaction does not match takerAmount',
* 5 -> 'No ether is required for a trade between tokens',
* 6 -> 'The sender of this transaction must match the takerAddress',
* 7 -> 'Order has already been cancelled or filled'
*/
event Failed(uint code, address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
/** Fills an order by transferring tokens between (maker or escrow) and taker.
* maker is given tokenA to taker,
*/
function fill(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) payable {
if (makerAddress == takerAddress) {
msg.sender.transfer(msg.value);
Failed(1,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Check if this order has expired
if (expiration < now) {
msg.sender.transfer(msg.value);
Failed(2,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Validate the message by signature.
bytes32 hash = validate(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce, v, r, s);
// Check if this order has already been filled
if (fills[hash]) {
msg.sender.transfer(msg.value);
Failed(3,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Check to see if this an order for ether.
if (takerToken == address(0x0)) {
// Check to make sure the message value is the order amount.
if (msg.value == takerAmount) {
// Mark order as filled to prevent reentrancy.
fills[hash] = true;
// Perform the trade between makerAddress and takerAddress.
// The transfer will throw if there's a problem.
assert(transfer(makerAddress, takerAddress, makerAmount, makerToken));
// Transfer the ether received from sender to makerAddress.
makerAddress.transfer(msg.value);
// Log an event to indicate completion.
Filled(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
msg.sender.transfer(msg.value);
Failed(4,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
} else {
// This is an order trading two tokens
// Check that no ether has been sent accidentally
if (msg.value != 0) {
msg.sender.transfer(msg.value);
Failed(5,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
if (takerAddress == msg.sender) {
// Mark order as filled to prevent reentrancy.
fills[hash] = true;
// Perform the trade between makerAddress and takerAddress.
// The transfer will throw if there's a problem.
// Assert should never fail
assert(trade(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken));
// Log an event to indicate completion.
Filled(
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
Failed(6,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
}
}
/** Cancels an order by refunding escrow and adding it to the fills mapping.
* Will log an event if
* - order has been cancelled or
* - order has already been filled
* and will do nothing if the maker of the order in question is not the
* msg.sender
*/
function cancel(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) {
// Validate the message by signature.
bytes32 hash = validate(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce, v, r, s);
// Only the maker can cancel an order
if (msg.sender == makerAddress) {
// Check that order has not already been filled/cancelled
if (fills[hash] == false) {
// Cancel the order by considering it filled.
fills[hash] = true;
// Broadcast an event to the blockchain.
Canceled(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
Failed(7,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
}
}
/** Atomic trade of tokens between first party and second party.
* Throws if one of the trades does not go through.
*/
function trade(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken) private returns (bool) {
return (transfer(makerAddress, takerAddress, makerAmount, makerToken) &&
transfer(takerAddress, makerAddress, takerAmount, takerToken));
}
/** Transfers tokens from first party to second party.
* Prior to a transfer being done by the contract, ensure that
* tokenVal.approve(this, amount, {from : address}) has been called
* throws if the transferFrom of the token returns false
* returns true if, the transfer went through
*/
function transfer(address from, address to, uint amount, address token) private returns (bool) {
require(ERC20(token).transferFrom(from, to, amount));
return true;
}
/** Validates order arguments for fill() and cancel() functions. */
function validate(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) private returns (bytes32) {
// Hash arguments to identify the order.
bytes32 hashV = keccak256(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
bytes memory prefix = "\x19Ethereum Signed Message:\n32";
bytes32 prefixedHash = sha3(prefix, hashV);
require(ecrecover(prefixedHash, v, r, s) == makerAddress);
return hashV;
}
}File 2 of 2: AirSwapToken
pragma solidity ^0.4.11;
// See the Github at github.com/airswap/contracts
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner public {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public {
paused = true;
Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
Unpause();
}
}
contract Token {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base contract since public getter functions are not
currently recognised as an implementation of the matching abstract
function by the compiler.
*/
/// total amount of tokens
uint256 public totalSupply;
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance);
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) returns (bool success);
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of tokens to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) returns (bool success);
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) public balances; // *added public
mapping (address => mapping (address => uint256)) public allowed; // *added public
}
/** @title The AirSwap Token
* An ERC20-compliant token that is only transferable after a
* specified time. Holders also have the ability to lock an amount of tokens
* for a period of time for applications that reference this locked amount
* for example for licensing features.
*/
contract AirSwapToken is StandardToken, Pausable {
string public constant name = "AirSwap Token";
string public constant symbol = "AST";
uint8 public constant decimals = 4;
uint256 public constant totalSupply = 5000000000000;
// The time after which AirSwap tokens become transferable.
// Current value is October 17, 2017 10:10:10 Eastern Time.
uint256 becomesTransferable = 1508249410;
// The time that tokens are to be locked before becoming unlockable.
// Current value is 7 days.
uint256 lockingPeriod = 604800;
// Prevents premature execution.
modifier onlyAfter(uint256 _time) {
require(now >= _time);
_;
}
// Prevent premature execution for anyone but the owner.
modifier onlyAfterOrOwner(uint256 _time, address _from) {
if (_from != owner) {
require(now >= _time);
}
_;
}
// Holds the amount and date of a given balance lock.
struct BalanceLock {
uint256 amount;
uint256 unlockDate;
}
// A mapping of balance lock to a given address.
mapping (address => BalanceLock) public balanceLocks;
// An event to notify that _owner has locked a balance.
event BalanceLocked(address indexed _owner, uint256 _oldLockedAmount,
uint256 _newLockedAmount, uint256 _expiry);
/** @dev Constructor for the contract.
* @param _deployer The address that will initially hold all tokens.
* @param _owner The address that will be able to transfer early.
* @param _balance The initial balance for the owner.
*/
function AirSwapToken(address _deployer, address _owner, uint256 _balance)
Pausable() {
transferOwnership(_owner);
balances[_deployer] = totalSupply - _balance;
balances[_owner] = _balance;
Transfer(0x0, _deployer, totalSupply);
Transfer(_deployer, _owner, _balance);
}
/** @dev Sets a token balance to be locked by the sender, on the condition
* that the amount is equal or greater than the previous amount, or if the
* previous lock time has expired.
* @param _value The amount be locked.
*/
function lockBalance(uint256 _value) {
// Check if the lock on previously locked tokens is still active.
if (balanceLocks[msg.sender].unlockDate > now) {
// Only allow confirming the lock or adding to it.
require(_value >= balanceLocks[msg.sender].amount);
}
// Ensure that no more than the balance can be locked.
require(balances[msg.sender] >= _value);
// Lock tokens and notify.
uint256 _expiry = now + lockingPeriod;
BalanceLocked(msg.sender, balanceLocks[msg.sender].amount, _value, _expiry);
balanceLocks[msg.sender] = BalanceLock(_value, _expiry);
}
/** @dev Returns the balance that a given address has available for transfer.
* @param _owner The address of the token owner.
*/
function availableBalance(address _owner) constant returns(uint256) {
if (balanceLocks[_owner].unlockDate < now) {
return balances[_owner];
} else {
assert(balances[_owner] >= balanceLocks[_owner].amount);
return balances[_owner] - balanceLocks[_owner].amount;
}
}
/** @dev Send `_value` token to `_to` from `msg.sender`, on the condition
* that there are enough unlocked tokens in the `msg.sender` account.
* @param _to The address of the recipient.
* @param _value The amount of token to be transferred.
* @return Whether the transfer was successful or not.
*/
function transfer(address _to, uint256 _value)
onlyAfter(becomesTransferable) whenNotPaused
returns (bool success) {
require(availableBalance(msg.sender) >= _value);
return super.transfer(_to, _value);
}
/** @dev Send `_value` token to `_to` from `_from` on the condition
* that there are enough unlocked tokens in the `_from` account.
* @param _from The address of the sender.
* @param _to The address of the recipient.
* @param _value The amount of token to be transferred.
* @return Whether the transfer was successful or not.
*/
function transferFrom(address _from, address _to, uint256 _value)
onlyAfterOrOwner(becomesTransferable, _from) whenNotPaused
returns (bool success) {
require(availableBalance(_from) >= _value);
return super.transferFrom(_from, _to, _value);
}
}