Transaction Hash:
Block:
22550655 at May-24-2025 05:34:59 AM +UTC
Transaction Fee:
0.000062129963668086 ETH
$0.29
Gas Used:
88,107 Gas / 0.705164898 Gwei
Emitted Events:
1794 |
ERC20PredicateProxy.0x9b217a401a5ddf7c4d474074aff9958a18d48690d77cc2151c4706aa7348b401( 0x9b217a401a5ddf7c4d474074aff9958a18d48690d77cc2151c4706aa7348b401, 0x000000000000000000000000f9f2934331c051a37bb6e9c1397205c0e458f434, 0x000000000000000000000000f9f2934331c051a37bb6e9c1397205c0e458f434, 0x0000000000000000000000008f3470a7388c05ee4e7af3d01d8c722b0ff52374, 0000000000000000000000000000000000000000000000001f7565483f5d9976 )
|
1795 |
VeritaseumToken.Transfer( from=[Sender] 0xf9f2934331c051a37bb6e9c1397205c0e458f434, to=ERC20PredicateProxy, value=2266829348426062198 )
|
1796 |
StateSender.StateSynced( id=3069820, contractAddress=0xA6FA4fB5...9C5d1C0aa, data=0x87A7811F4BFEDEA3D341AD165680AE306B01AAEACC205D227629CF157DD9F821000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000A0000000000000000000000000F9F2934331C051A37BB6E9C1397205C0E458F4340000000000000000000000008F3470A7388C05EE4E7AF3D01D8C722B0FF52374000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000001F7565483F5D9976 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28e4F3a7...189A5bFbE | (Polygon (Matic): State Syncer) | ||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.089207616234624618 Eth | 12.089217976129256853 Eth | 0.000010359894632235 | |
0x8f3470A7...b0FF52374 | |||||
0xF9f29343...0E458f434 |
0.011713157322566755 Eth
Nonce: 217
|
0.011651027358898669 Eth
Nonce: 218
| 0.000062129963668086 |
Execution Trace
RootChainManagerProxy.e3dec8fb( )

RootChainManager.depositFor( user=0xF9f2934331c051a37Bb6e9C1397205C0E458f434, rootToken=0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374, depositData=0x0000000000000000000000000000000000000000000000001F7565483F5D9976 )
ERC20PredicateProxy.e375b64e( )
ERC20Predicate.lockTokens( depositor=0xF9f2934331c051a37Bb6e9C1397205C0E458f434, depositReceiver=0xF9f2934331c051a37Bb6e9C1397205C0E458f434, rootToken=0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374, depositData=0x0000000000000000000000000000000000000000000000001F7565483F5D9976 )
-
VeritaseumToken.transferFrom( _from=0xF9f2934331c051a37Bb6e9C1397205C0E458f434, _to=0x40ec5B33f54e0E8A33A975908C5BA1c14e5BbbDf, _value=2266829348426062198 ) => ( success=True )
-
-
StateSender.syncState( receiver=0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa, data=0x87A7811F4BFEDEA3D341AD165680AE306B01AAEACC205D227629CF157DD9F821000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000A0000000000000000000000000F9F2934331C051A37BB6E9C1397205C0E458F4340000000000000000000000008F3470A7388C05EE4E7AF3D01D8C722B0FF52374000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000001F7565483F5D9976 )
depositFor[RootChainManager (ln:243)]
_depositFor[RootChainManager (ln:252)]
lockTokens[RootChainManager (ln:284)]
_msgSender[RootChainManager (ln:285)]
msgSender[RootChainManager (ln:47)]
encode[RootChainManager (ln:290)]
syncState[RootChainManager (ln:291)]
encode[RootChainManager (ln:293)]
File 1 of 6: RootChainManagerProxy
File 2 of 6: ERC20PredicateProxy
File 3 of 6: VeritaseumToken
File 4 of 6: StateSender
File 5 of 6: RootChainManager
File 6 of 6: ERC20Predicate
12345678910111213141516// File: contracts/common/Proxy/IERCProxy.solpragma solidity 0.6.6;interface IERCProxy {function proxyType() external pure returns (uint256 proxyTypeId);function implementation() external view returns (address codeAddr);}// File: contracts/common/Proxy/Proxy.solpragma solidity 0.6.6;abstract contract Proxy is IERCProxy {
File 2 of 6: ERC20PredicateProxy
12345678910111213141516// File: contracts/common/Proxy/IERCProxy.solpragma solidity 0.6.6;interface IERCProxy {function proxyType() external pure returns (uint256 proxyTypeId);function implementation() external view returns (address codeAddr);}// File: contracts/common/Proxy/Proxy.solpragma solidity 0.6.6;abstract contract Proxy is IERCProxy {
File 3 of 6: VeritaseumToken
12345678910111213141516pragma solidity ^0.4.8;contract Ownable {address public owner;function Ownable() {owner = msg.sender;}modifier onlyOwner() {if (msg.sender != owner) {throw;}_;}
File 4 of 6: StateSender
12345678910111213141516/**Matic network contracts*/pragma solidity ^0.5.2;contract Ownable {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/
File 5 of 6: RootChainManager
12345678910111213141516pragma solidity 0.6.6;import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";import {IRootChainManager} from "./IRootChainManager.sol";import {RootChainManagerStorage} from "./RootChainManagerStorage.sol";import {IStateSender} from "../StateSender/IStateSender.sol";import {ICheckpointManager} from "../ICheckpointManager.sol";import {RLPReader} from "../../lib/RLPReader.sol";import {ExitPayloadReader} from "../../lib/ExitPayloadReader.sol";import {MerklePatriciaProof} from "../../lib/MerklePatriciaProof.sol";import {Merkle} from "../../lib/Merkle.sol";import {ITokenPredicate} from "../TokenPredicates/ITokenPredicate.sol";import {Initializable} from "../../common/Initializable.sol";import {NativeMetaTransaction} from "../../common/NativeMetaTransaction.sol";import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";import {AccessControlMixin} from "../../common/AccessControlMixin.sol";import {ContextMixin} from "../../common/ContextMixin.sol";
File 6 of 6: ERC20Predicate
12345678910111213141516pragma solidity 0.6.6;import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import {AccessControlMixin} from "../../common/AccessControlMixin.sol";import {RLPReader} from "../../lib/RLPReader.sol";import {ITokenPredicate} from "./ITokenPredicate.sol";import {Initializable} from "../../common/Initializable.sol";contract ERC20Predicate is ITokenPredicate, AccessControlMixin, Initializable {using RLPReader for bytes;using RLPReader for RLPReader.RLPItem;using SafeERC20 for IERC20;bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE");bytes32 public constant TOKEN_TYPE = keccak256("ERC20");bytes32 public constant TRANSFER_EVENT_SIG = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;event LockedERC20(address indexed depositor,