ETH Price: $2,520.86 (-0.39%)

Transaction Decoder

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 Code
(Hiveon Pool)
17,891.974442410381778354 Eth17,891.974494091381778354 Eth0.000051681
0x52ec2F3d...15098E8fC
(Optimism: Teleportr Deposit)
364.441826735054031974 Eth364.444937835054031974 Eth0.0031111
0xBE11869B...01497D1A8
0.021955169790304794 Eth
Nonce: 12
0.017905580577866016 Eth
Nonce: 13
0.004049589212438778

Execution Trace

ETH 0.0031111 TeleportrDeposit.CALL( )
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.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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX