Transaction Hash:
Block:
8210246 at Jul-24-2019 12:37:30 AM +UTC
Transaction Fee:
0.00071239194 ETH
$1.99
Gas Used:
1,421,940 Gas / 0.501 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2E8e00b0...15a1B7BBc |
0.00978146800775 Eth
Nonce: 48
|
0.00906907606775 Eth
Nonce: 49
| 0.00071239194 | ||
0xa3c084Ae...61d3aE5d5
Miner
| (Uleypool) | 4.778571824961315865 Eth | 4.779284216901315865 Eth | 0.00071239194 | |
0xdcB5410E...A981f5e2d | |||||
0xf331FF3d...62FE82757 |
Execution Trace
0xf331ff3d2eaf9a2009dc935816665c962fe82757.f5dd50d2( )
0x479cb0f8aa3bf48977e0cc8669d15b08abf0b6de.60806040( )
0xb10678c44f94a496416e196bc27c8629a3447b12.60806040( )
0x7b378e570bd102dd35aad438d417098f18b7f097.60806040( )
0x2b90ca42f8bd3f95b8c0ad5deb8df3f38043997b.60806040( )
0x36e917d567c0b4a3c1358ad89df4e521f15124f9.60806040( )
0xf3db5a609a58915cfc49353fb6ccb38415b48fa9.60806040( )
0xc0e6c7b2404cf32273a2d242728eeb74846dee00.60806040( )
0xa9a83cc23feb3eeb0e74b062370d1d6f37bc851a.60806040( )
0xe210233bd42f406d5c30f6ca27e1ee49682e8d47.60806040( )
0x271fc71e874cf2b269582bfed7f2de0c75206984.60806040( )
0x2ebd1f45879196804e2bc3598e881d886e320246.60806040( )
0x20d8466095b2ffb804ce9c6d8e780edade3ff245.60806040( )
0x5ec2c614d7a79e87c3d1da0fe7d1cc992669fc52.60806040( )
0xef3118f7d35168545730a201202267047a21b0ad.60806040( )
0x1bd310d6598a054b18dff636e43aae91031b1d0f.60806040( )
0x5e6203bf15d0e43c8dc43f19cd613c8a2f67f1a5.60806040( )
0x5ac498b631677ea76f5796a847e4446e12227019.60806040( )
0x9e034ccc871d45bda0fd5443d4415166e45fd5e0.60806040( )
0x2fe8bc1b78294c8fdbc1a401d4f79bb38ea212c6.60806040( )
0x49c9c3efc53d9d8bc66509cb21fbacb9be804804.60806040( )
0x5414b7f5875e06e02b901f43673e1c91477b28b5.60806040( )
1234567891011121314151617181920212223242526pragma solidity ^0.4.23;contract CoinMmc // @eachvar{// ======== 初始化代币相关逻辑 ==============// 地址信息address public admin_address = 0x64b33dB1Cc804e7CA51D9c21F132567923D7BA00; // @eachvaraddress public account_address = 0x64b33dB1Cc804e7CA51D9c21F132567923D7BA00; // @eachvar 初始化后转入代币的地址// 定义账户余额mapping(address => uint256) balances;// solidity 会自动为 public 变量添加方法,有了下边这些变量,就能获得代币的基本信息了string public name = "MaiMiChain"; // @eachvarstring public symbol = "MMC"; // @eachvaruint8 public decimals = 2; // @eachvaruint256 initSupply = 1000000000000; // @eachvaruint256 public totalSupply = 0; // @eachvar// 生成代币,并转入到 account_address 地址constructor()payablepublic{totalSupply = mul(initSupply, 10**uint256(decimals));balances[account_address] = totalSupply;