ETH Price: $4,657.28 (+8.66%)

Transaction Decoder

Block:
13474286 at Oct-23-2021 02:24:54 PM +UTC
Transaction Fee:
0.003223120347481864 ETH $15.01
Gas Used:
46,586 Gas / 69.186458324 Gwei

Emitted Events:

283 KST.Approval( owner=[Sender] 0xcf2b3b22e1ea4e41f56195634b13c7759023c526, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(F2Pool Old)
2,789.498978753100334971 Eth2,789.499048632100334971 Eth0.000069879
0xBc17729f...441056d87
0xCF2b3B22...59023C526
0.017707659625186409 Eth
Nonce: 1
0.014484539277704545 Eth
Nonce: 2
0.003223120347481864

Execution Trace

KST.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetFixedSupply.sol";
contract KST is ERC20PresetFixedSupply {
uint256 private constant TOTAL_SUPPLY = 60000000 ether;
constructor()
ERC20PresetFixedSupply(
"KSM Starter Token",
"KST",
TOTAL_SUPPLY,
msg.sender
)
{}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../extensions/ERC20Burnable.sol";
/**
* @dev {ERC20} token, including:
*
* - Preminted initial supply
* - Ability for holders to burn (destroy) their tokens
* - No access control mechanism (for minting/pausing) and hence no governance
*
* This contract uses {ERC20Burnable} to include burn capabilities - head to
* its documentation for details.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX