Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x829BD824...93333A830
Miner
| (F2Pool Old) | 2,789.498978753100334971 Eth | 2,789.499048632100334971 Eth | 0.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 )
approve[ERC20 (ln:198)]
_approve[ERC20 (ln:199)]
Approval[ERC20 (ln:358)]
_msgSender[ERC20 (ln:199)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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: MITpragma 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.