Transaction Hash:
Block:
9085434 at Dec-10-2019 10:19:22 PM +UTC
Transaction Fee:
0.0002105375 ETH
$0.75
Gas Used:
84,215 Gas / 2.5 Gwei
Emitted Events:
75 |
KittyCore.Pregnant( owner=[Sender] 0x2dca345284d6038ec9dcac702f37d95be7c3fc25, matronId=1706928, sireId=1349442, cooldownEndBlock=9087354 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06012c8c...f8E7A266d | 6.356981779133049033 Eth | 6.364981779133049033 Eth | 0.008 | ||
0x2dCa3452...be7c3FC25 |
0.025009983657489871 Eth
Nonce: 11
|
0.016799446157489871 Eth
Nonce: 12
| 0.0082105375 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 524.194913480571288716 Eth | 524.195124018071288716 Eth | 0.0002105375 |
Execution Trace
ETH 0.008
KittyCore.breedWithAuto( _matronId=1706928, _sireId=1349442 )
breedWithAuto[KittyBreeding (ln:961)]
_owns[KittyBreeding (ln:970)]
_isSiringPermitted[KittyBreeding (ln:986)]
_isReadyToBreed[KittyBreeding (ln:992)]
_isReadyToBreed[KittyBreeding (ln:998)]
_isValidMatingPair[KittyBreeding (ln:1001)]
_breedWith[KittyBreeding (ln:1009)]
_triggerCooldown[KittyBreeding (ln:941)]
_triggerCooldown[KittyBreeding (ln:942)]
Pregnant[KittyBreeding (ln:953)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.11;/*** @title Ownable* @dev The Ownable contract has an owner address, and provides basic authorization control* functions, this simplifies the implementation of "user permissions".*/contract Ownable {address public owner;/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/function Ownable() {owner = msg.sender;}/*** @dev Throws if called by any account other than the owner.*/modifier onlyOwner() {require(msg.sender == owner);