ETH Price: $3,887.71 (+1.87%)

Transaction Decoder

Block:
22525834 at May-20-2025 06:12:47 PM +UTC
Transaction Fee:
0.000547525400201598 ETH $2.13
Gas Used:
161,497 Gas / 3.390313134 Gwei

Emitted Events:

324 EventsHistory.0x940c4b3549ef0aaff95807dc27f62d88ca15532d1bf535d7d63800f40395d16c( 0x940c4b3549ef0aaff95807dc27f62d88ca15532d1bf535d7d63800f40395d16c, 0x0000000000000000000000005f96d886b374282942db914d511cff22b762b4c8, 0x00000000000000000000000040a9b1deb71450ee8eeb77e5c06c2702625712af, 0x554e420000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000005e5842ead9, 0000000000000000000000000000000000000000000000000000000000000060, 0000000000000000000000000000000000000000000000000000000000000002, 0000000000000000000000000000000000000000000000000000000000000000 )
325 UniBrightToken.Transfer( from=[Sender] 0x5f96d886b374282942db914d511cff22b762b4c8, to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, value=405207706329 )

Account State Difference:

  Address   Before After State Difference Code
0x331d0775...84c411F84
0x5F96D886...2B762b4C8
559.402094980491218422 Eth
Nonce: 8152
559.401547455091016824 Eth
Nonce: 8153
0.000547525400201598
(BuilderNet)
211.741469398649143114 Eth211.741477473499143114 Eth0.00000807485

Execution Trace

UniBrightToken.transfer( _to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, _value=405207706329 ) => ( True )
  • AssetWithWhitelist._performTransferWithReference( _to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, _value=405207706329, _reference=, _sender=0x5F96D886B374282942DB914D511cff22B762b4C8 ) => ( True )
    • UniBrightToken._forwardTransferFromWithReference( _from=0x5F96D886B374282942DB914D511cff22B762b4C8, _to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, _value=405207706329, _reference=, _sender=0x5F96D886B374282942DB914D511cff22B762b4C8 ) => ( True )
      • EToken2.proxyTransferFromWithReference( _from=0x5F96D886B374282942DB914D511cff22B762b4C8, _to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, _value=405207706329, _symbol=554E420000000000000000000000000000000000000000000000000000000000, _reference=, _sender=0x5F96D886B374282942DB914D511cff22B762b4C8 ) => ( True )
        • EventsHistory.515c1457( )
          • 0xa7f00a55324c13a880f60dee8a4a5447099e5e44.515c1457( )
            • EToken2.proxies( 554E420000000000000000000000000000000000000000000000000000000000 ) => ( 0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e )
            • 0x987b842235b0e73a80948296837de09f8eab1765.50695a02( )
            • EventsHistory.versions( 0x331d077518216c07C87f4f18bA64cd384c411F84 ) => ( 2 )
            • UniBrightToken.emitTransfer( _from=0x5F96D886B374282942DB914D511cff22B762b4C8, _to=0x40a9b1deB71450eE8eeb77e5c06C2702625712Af, _value=405207706329 )
              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