Transaction Hash:
Block:
14896887 at Jun-03-2022 11:36:04 AM +UTC
Transaction Fee:
0.000938489212438778 ETH
$2.37
Gas Used:
34,454 Gas / 27.238904407 Gwei
Emitted Events:
487 |
TeleportrDeposit.EtherReceived( depositId=43433, emitter=[Sender] 0xbe11869b087ff6102af9986a524903901497d1a8, amount=3111100000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 17,891.974442410381778354 Eth | 17,891.974494091381778354 Eth | 0.000051681 | |
0x52ec2F3d...15098E8fC | (Optimism: Teleportr Deposit) | 364.441826735054031974 Eth | 364.444937835054031974 Eth | 0.0031111 | |
0xBE11869B...01497D1A8 |
0.021955169790304794 Eth
Nonce: 12
|
0.017905580577866016 Eth
Nonce: 13
| 0.004049589212438778 |
Execution Trace
ETH 0.0031111
TeleportrDeposit.CALL( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.8.9;import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";/*** @title TeleportrDeposit** Shout out to 0xclem for providing the inspiration for this contract:* https://github.com/0xclem/teleportr/blob/main/contracts/BridgeDeposit.sol*/contract TeleportrDeposit is Ownable {/// The minimum amount that be deposited in a receive.uint256 public minDepositAmount;/// The maximum amount that be deposited in a receive.uint256 public maxDepositAmount;/// The maximum balance the contract can hold after a receive.uint256 public maxBalance;/// The total number of successful deposits received.uint256 public totalDeposits;/*** @notice Emitted any time the minimum deposit amount is set.* @param previousAmount The previous minimum deposit amount.* @param newAmount The new minimum deposit amount.*/event MinDepositAmountSet(uint256 previousAmount, uint256 newAmount);/*** @notice Emitted any time the maximum deposit amount is set.