ETH Price: $4,269.48 (+2.02%)
Gas: 0.38 Gwei

Transaction Decoder

Block:
8912004 at Nov-11-2019 03:06:47 AM +UTC
Transaction Fee:
0.000500632 ETH $2.14
Gas Used:
45,512 Gas / 11 Gwei

Emitted Events:

75 Dragon.Approval( owner=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, spender=0x1cE7AE55...ee6Ee33D8, value=10000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
226.946683852798113158 Eth226.947184484798113158 Eth0.000500632
0x343a3C7F...F643678d9
0.008532450281576316 Eth
Nonce: 284
0.008031818281576316 Eth
Nonce: 285
0.000500632
0x419c4dB4...8D9fDA05E

Execution Trace

Dragon.approve( _spender=0x1cE7AE555139c5EF5A57CC8d814a867ee6Ee33D8, _value=10000000000000000000 ) => ( True )
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;
// File: zeppelin-solidity/contracts/math/SafeMath.sol
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
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;
}
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;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX