ETH Price: $4,301.53 (+6.63%)

Transaction Decoder

Block:
22570839 at May-27-2025 01:27:47 AM +UTC
Transaction Fee:
0.000332368187896864 ETH $1.43
Gas Used:
110,212 Gas / 3.015716872 Gwei

Emitted Events:

716 EventsHistory.0x389385fc5633d833d54b67ef0b0b6f5d82b17f93ecc47a4912173ddbb63e3745( 0x389385fc5633d833d54b67ef0b0b6f5d82b17f93ecc47a4912173ddbb63e3745, 0x000000000000000000000000f4cfc9d790ff348538bf0a4af196a1149212c7d8, 0x000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c, 0x554e420000000000000000000000000000000000000000000000000000000000, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, 0000000000000000000000000000000000000000000000000000000000000002 )
717 UniBrightToken.Approval( from=[Sender] 0xf4cfc9d790ff348538bf0a4af196a1149212c7d8, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x331d0775...84c411F84
(Titan Builder)
9.281833638721017525 Eth9.281888744721017525 Eth0.000055106
0xf4cFC9D7...49212C7d8
0.054736871617406948 Eth
Nonce: 19
0.054404503429510084 Eth
Nonce: 20
0.000332368187896864

Execution Trace

UniBrightToken.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
  • AssetWithWhitelist._performApprove( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935, _sender=0xf4cFC9D790FF348538Bf0A4Af196a1149212C7d8 ) => ( True )
    • UniBrightToken._forwardApprove( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935, _sender=0xf4cFC9D790FF348538Bf0A4Af196a1149212C7d8 ) => ( True )
      • EToken2.proxyApprove( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935, _symbol=554E420000000000000000000000000000000000000000000000000000000000, _sender=0xf4cFC9D790FF348538Bf0A4Af196a1149212C7d8 ) => ( True )
        • EventsHistory.d54c8c87( )
          • 0xa7f00a55324c13a880f60dee8a4a5447099e5e44.d54c8c87( )
            • EToken2.proxies( 554E420000000000000000000000000000000000000000000000000000000000 ) => ( 0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e )
            • 0x987b842235b0e73a80948296837de09f8eab1765.50695a02( )
            • EventsHistory.versions( 0x331d077518216c07C87f4f18bA64cd384c411F84 ) => ( 2 )
            • UniBrightToken.emitApprove( _from=0xf4cFC9D790FF348538Bf0A4Af196a1149212C7d8, _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
              File 1 of 4: UniBrightToken
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              pragma solidity 0.4.15;
              contract RegistryICAPInterface {
              function parse(bytes32 _icap) constant returns(address, bytes32, bool);
              function institutions(bytes32 _institution) constant returns(address);
              }
              contract EToken2Interface {
              function registryICAP() constant returns(RegistryICAPInterface);
              function baseUnit(bytes32 _symbol) constant returns(uint8);
              function description(bytes32 _symbol) constant returns(string);
              function owner(bytes32 _symbol) constant returns(address);
              function isOwner(address _owner, bytes32 _symbol) constant returns(bool);
              function totalSupply(bytes32 _symbol) constant returns(uint);
              function balanceOf(address _holder, bytes32 _symbol) constant returns(uint);
              function isLocked(bytes32 _symbol) constant returns(bool);
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 2 of 4: EventsHistory
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // This software is a subject to Ambisafe License Agreement.
              // No use or distribution is allowed without written permission from Ambisafe.
              // https://ambisafe.com/terms.pdf
              contract Ambi {
              function getNodeAddress(bytes32 _nodeName) constant returns(address);
              function hasRelation(bytes32 _nodeName, bytes32 _relation, address _to) constant returns(bool);
              function addNode(bytes32 _nodeName, address _nodeAddress) constant returns(bool);
              }
              contract AmbiEnabled {
              Ambi public ambiC;
              bool public isImmortal;
              bytes32 public name;
              modifier checkAccess(bytes32 _role) {
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 3 of 4: AssetWithWhitelist
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // This software is a subject to Ambisafe License Agreement.
              // No use or distribution is allowed without written permission from Ambisafe.
              // https://www.ambisafe.co/terms-of-use/
              pragma solidity 0.4.15;
              contract Ambi2 {
              function claimFor(address _address, address _owner) returns(bool);
              function hasRole(address _from, bytes32 _role, address _to) constant returns(bool);
              function isOwner(address _node, address _owner) constant returns(bool);
              }
              contract Ambi2Enabled {
              Ambi2 ambi2;
              modifier onlyRole(bytes32 _role) {
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 4 of 4: EToken2
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // This software is a subject to Ambisafe License Agreement.
              // No use or distribution is allowed without written permission from Ambisafe.
              // https://ambisafe.com/terms.pdf
              pragma solidity 0.4.8;
              contract Ambi2 {
              function claimFor(address _address, address _owner) returns(bool);
              function hasRole(address _from, bytes32 _role, address _to) constant returns(bool);
              function isOwner(address _node, address _owner) constant returns(bool);
              }
              contract Ambi2Enabled {
              Ambi2 ambi2;
              modifier onlyRole(bytes32 _role) {
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX