ETH Price: $2,473.04 (-6.88%)

Transaction Decoder

Block:
21236160 at Nov-21-2024 12:39:35 PM +UTC
Transaction Fee:
0.002871284583941928 ETH $7.10
Gas Used:
89,892 Gas / 31.941491834 Gwei

Emitted Events:

213 FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000004e24e4cce79bb6ddc4baec394880873215edaf7d, 0x0000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae, 00000000000000000000000000000000000000000000000000000003b9aca000 )
214 GnosisSafeProxy.0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e( 0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e, 6cfdceb4a85bb5fa71201c9bd8e4dc4d8ed4558e16a3d54e50f72b5c434e7f27, 0000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.742852235774111698 Eth11.743008267554948982 Eth0.000156031780837284
0x4e24e4Cc...215eDaf7D
0xA0b86991...E3606eB48
0xedDd429c...52C2a6b4E
0.097114133138934206 Eth
Nonce: 172
0.094242848554992278 Eth
Nonce: 173
0.002871284583941928

Execution Trace

GnosisSafeProxy.6a761202( )
  • GnosisSafe.execTransaction( to=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, value=0, data=0x095EA7B30000000000000000000000001231DEB6F5749EF6CE6943A275A1D3E7486F4EAE00000000000000000000000000000000000000000000000000000003B9ACA000, operation=0, safeTxGas=0, baseGas=0, gasPrice=0, gasToken=0x0000000000000000000000000000000000000000, refundReceiver=0x0000000000000000000000000000000000000000, signatures=0x7E957A7E23D405B14846C7EF5AB0893DF19EB9AA697DB3C3CAB945CD4E971DAC4393C931715A0BB1C2389712F1E2929CD3D441388414101020B57C9561CA1C631B000000000000000000000000EDDD429CE2BCAE8ED1D70E145A824FC52C2A6B4E000000000000000000000000000000000000000000000000000000000000000001 ) => ( success=True )
    • Null: 0x000...001.6cfdceb4( )
    • FiatTokenProxy.095ea7b3( )
      • FiatTokenV2_2.approve( spender=0x1231DEB6f5749EF6cE6943a275A1D3E7486F4EaE, value=16000000000 ) => ( True )
        File 1 of 4: GnosisSafeProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma solidity >=0.7.0 <0.9.0;
        /// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
        /// @author Richard Meissner - <richard@gnosis.io>
        interface IProxy {
        function masterCopy() external view returns (address);
        }
        /// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
        /// @author Stefan George - <stefan@gnosis.io>
        /// @author Richard Meissner - <richard@gnosis.io>
        contract GnosisSafeProxy {
        // singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
        // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
        address internal singleton;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 4: FiatTokenProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.4.24;
        // File: zos-lib/contracts/upgradeability/Proxy.sol
        /**
        * @title Proxy
        * @dev Implements delegation of calls to other contracts, with proper
        * forwarding of return values and bubbling of failures.
        * It defines a fallback function that delegates all calls to the address
        * returned by the abstract _implementation() internal function.
        */
        contract Proxy {
        /**
        * @dev Fallback function.
        * Implemented entirely in `_fallback`.
        */
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 3 of 4: GnosisSafe
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma solidity >=0.7.0 <0.9.0;
        import "./base/ModuleManager.sol";
        import "./base/OwnerManager.sol";
        import "./base/FallbackManager.sol";
        import "./base/GuardManager.sol";
        import "./common/EtherPaymentFallback.sol";
        import "./common/Singleton.sol";
        import "./common/SignatureDecoder.sol";
        import "./common/SecuredTokenTransfer.sol";
        import "./common/StorageAccessible.sol";
        import "./interfaces/ISignatureValidator.sol";
        import "./external/GnosisSafeMath.sol";
        /// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191.
        /// @author Stefan George - <stefan@gnosis.io>
        /// @author Richard Meissner - <richard@gnosis.io>
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 4: FiatTokenV2_2
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /**
        * SPDX-License-Identifier: Apache-2.0
        *
        * Copyright (c) 2023, Circle Internet Financial, LLC.
        *
        * Licensed under the Apache License, Version 2.0 (the "License");
        * you may not use this file except in compliance with the License.
        * You may obtain a copy of the License at
        *
        * http://www.apache.org/licenses/LICENSE-2.0
        *
        * Unless required by applicable law or agreed to in writing, software
        * distributed under the License is distributed on an "AS IS" BASIS,
        * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        * See the License for the specific language governing permissions and
        * limitations under the License.
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX