ETH Price: $2,003.36 (-2.89%)

Transaction Decoder

Block:
5548672 at May-03-2018 10:35:48 AM +UTC
Transaction Fee:
0.0001631796 ETH $0.33
Gas Used:
31,996 Gas / 5.1 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x097B3B7C...2Cce6EF43
(DwarfPool)
172.672659543557415632 Eth172.672822723157415632 Eth0.0001631796
0xabAF790E...57B2ee04E
1.186725946001346277 Eth
Nonce: 37934
1.186562766401346277 Eth
Nonce: 37935
0.0001631796

Execution Trace

ConversionRates.setCompactData( buy=[6/xjZxg/4jU6adlJAAA=], sell=[EgCko+rFK9bKniy9AAA=], blockNumber=5548669, indices=[0] )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity 0.4.18;
interface ConversionRatesInterface {
function recordImbalance(
ERC20 token,
int buyAmount,
uint rateUpdateBlock,
uint currentBlock
)
public;
function getRate(ERC20 token, uint currentBlockNumber, bool buy, uint qty) public view returns(uint);
}
interface ERC20 {
function totalSupply() public view returns (uint supply);
function balanceOf(address _owner) public view returns (uint balance);
function transfer(address _to, uint _value) public returns (bool success);
function transferFrom(address _from, address _to, uint _value) public returns (bool success);
function approve(address _spender, uint _value) public returns (bool success);
function allowance(address _owner, address _spender) public view returns (uint remaining);
function decimals() public view returns(uint digits);
event Approval(address indexed _owner, address indexed _spender, uint _value);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX