ETH Price: $3,642.22 (+1.48%)

Transaction Decoder

Block:
15904824 at Nov-05-2022 03:51:35 PM +UTC
Transaction Fee:
0.002024740790216076 ETH $7.37
Gas Used:
137,994 Gas / 14.672672654 Gwei

Emitted Events:

88 DebankL2Register.Register( user=[Sender] 0x8bc66bc14e743333242b34935782a938e7ed38cc, l2Account=0x03069c76b40ff1d5677a6ebb98bb5f27f69510fec0990a0aea3666205351b2632a, registerCnt=1 )

Account State Difference:

  Address   Before After State Difference Code
0x6f922284...de963c992
(DeBank: L2 Registration)
0x8BC66bc1...8E7Ed38CC
0.0981339 Eth
Nonce: 0
0.096109159209783924 Eth
Nonce: 1
0.002024740790216076
(Flashbots: Builder)
1.184541685352695058 Eth1.184748676352695058 Eth0.000206991

Execution Trace

DebankL2Register.register( l2Account=0x03069c76b40ff1d5677a6ebb98bb5f27f69510fec0990a0aea3666205351b2632a )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
/**
* @title DebankL2Register
*/
contract DebankL2Register {
mapping(address => uint256) public nonces;
mapping(address => string) public l2Accounts;
event Register(address user, string l2Account, uint256 registerCnt);
function register(string calldata l2Account) public {
l2Accounts[msg.sender] = l2Account;
nonces[msg.sender] += 1;
emit Register(msg.sender, l2Account, nonces[msg.sender]);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX