ETH Price: $2,538.02 (-0.28%)

Transaction Decoder

Block:
20624793 at Aug-28-2024 04:46:59 AM +UTC
Transaction Fee:
0.000440638400520294 ETH $1.12
Gas Used:
137,066 Gas / 3.214789959 Gwei

Emitted Events:

186 MaticToken.Transfer( from=StakeManagerProxy, to=[Sender] 0x97882efbf25f1d2627fe3adb9f464c6028f92116, value=15666935101373043974 )
187 StakingInfo.DelegatorClaimedRewards( validatorId=118, user=[Sender] 0x97882efbf25f1d2627fe3adb9f464c6028f92116, rewards=15666935101373043974 )

Account State Difference:

  Address   Before After State Difference Code
0x3EDBF7E0...409364269
(Titan Builder)
5.458444059239978526 Eth5.458786724239978526 Eth0.000342665
0x5e3Ef299...e8c13D908
(Polygon (Matic): PoS Staking Contract)
0x7D1AfA7B...8AaCfeBB0
0x97882eFB...028F92116
0.087953558904182808 Eth
Nonce: 9
0.087512920503662514 Eth
Nonce: 10
0.000440638400520294

Execution Trace

ValidatorShareProxy.CALL( )
  • Registry.STATICCALL( )
  • ValidatorShare.DELEGATECALL( )
    • StakeManagerProxy.7ed4b27c( )
    • StakeManagerProxy.bc8756a9( )
      • StakeManager.transferFunds( validatorId=118, amount=15666935101373043974, delegator=0x97882eFBf25F1D2627fe3ADb9f464C6028F92116 ) => ( True )
        • MaticToken.transfer( to=0x97882eFBf25F1D2627fe3ADb9f464C6028F92116, value=15666935101373043974 ) => ( True )
        • StakingInfo.logDelegatorClaimRewards( validatorId=118, user=0x97882eFBf25F1D2627fe3ADb9f464C6028F92116, rewards=15666935101373043974 )
          • Registry.STATICCALL( )
          • StakeManagerProxy.35aa2e44( )
            • StakeManager.validators( 118 ) => ( amount=2550000000000000000000, reward=8094841189169054419467, activationEpoch=11448, deactivationEpoch=0, jailTime=0, signer=0x5fFD4EFfD8E476C72FddC75BcD31f421001F9Ce6, contractAddress=0x3EDBF7E027D280BCd8126a87f382941409364269, status=1, commissionRate=3, lastCommissionUpdate=40943, delegatorsReward=1, delegatedAmount=1655381501194211379093815, initialRewardPerStake=2851900837396244700171829 )
              File 1 of 7: ValidatorShareProxy
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // File: openzeppelin-solidity/contracts/ownership/Ownable.sol
              pragma solidity ^0.5.2;
              /**
              * @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 private _owner;
              event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
              /**
              * @dev The Ownable constructor sets the original `owner` of the contract to the sender
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 2 of 7: StakeManagerProxy
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // File: openzeppelin-solidity/contracts/ownership/Ownable.sol
              pragma solidity ^0.5.2;
              /**
              * @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 private _owner;
              event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
              /**
              * @dev The Ownable constructor sets the original `owner` of the contract to the sender
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 3 of 7: MaticToken
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              pragma solidity 0.5.2;
              // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
              /**
              * @title ERC20 interface
              * @dev see https://github.com/ethereum/EIPs/issues/20
              */
              interface IERC20 {
              function transfer(address to, uint256 value) external returns (bool);
              function approve(address spender, uint256 value) external returns (bool);
              function transferFrom(address from, address to, uint256 value) external returns (bool);
              function totalSupply() external view returns (uint256);
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 4 of 7: StakingInfo
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // File: contracts/common/governance/IGovernance.sol
              pragma solidity ^0.5.2;
              interface IGovernance {
              function update(address target, bytes calldata data) external;
              }
              // File: contracts/common/governance/Governable.sol
              pragma solidity ^0.5.2;
              contract Governable {
              IGovernance public governance;
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 5 of 7: Registry
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              /**
              Matic network contracts
              */
              pragma solidity ^0.5.2;
              interface IGovernance {
              function update(address target, bytes calldata data) external;
              }
              contract Governable {
              IGovernance public governance;
              constructor(address _governance) public {
              governance = IGovernance(_governance);
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 6 of 7: ValidatorShare
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // File: contracts/common/governance/IGovernance.sol
              pragma solidity ^0.5.2;
              interface IGovernance {
              function update(address target, bytes calldata data) external;
              }
              // File: contracts/common/governance/Governable.sol
              pragma solidity ^0.5.2;
              contract Governable {
              IGovernance public governance;
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 7 of 7: StakeManager
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
              pragma solidity ^0.5.2;
              /**
              * @title ERC20 interface
              * @dev see https://eips.ethereum.org/EIPS/eip-20
              */
              interface IERC20 {
              function transfer(address to, uint256 value) external returns (bool);
              function approve(address spender, uint256 value) external returns (bool);
              function transferFrom(address from, address to, uint256 value) external returns (bool);
              function totalSupply() external view returns (uint256);
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX