ETH Price: $2,545.92 (+1.59%)

Transaction Decoder

Block:
5617032 at May-15-2018 09:01:55 AM +UTC
Transaction Fee:
0.003126726 ETH $7.98
Gas Used:
173,707 Gas / 18 Gwei

Emitted Events:

23 MultiSigWalletWithDailyLimit.Submission( transactionId=31 )
24 MultiSigWalletWithDailyLimit.Confirmation( sender=[Sender] 0x313de3ff48cb69ec56bea74e89b8485fdfba63db, transactionId=31 )
25 MultiSigWalletWithDailyLimit.Execution( transactionId=31 )

Account State Difference:

  Address   Before After State Difference Code
0x313dE3fF...fDFBa63DB
0.036324782570964954 Eth
Nonce: 16
0.033198056570964954 Eth
Nonce: 17
0.003126726
0x31CbA7aD...5736a9615 256.279 Eth256.269 Eth0.01
(Nanopool)
5,869.12510391622352442 Eth5,869.12823064222352442 Eth0.003126726
0x65039084...A2e894FF3 0.000005 Eth0.010005 Eth0.01

Execution Trace

MultiSigWalletWithDailyLimit.submitTransaction( destination=0x65039084CC6f4773291A6ed7dCF5bC3A2e894FF3, value=10000000000000000, data=0x ) => ( transactionId=31 )
  • ETH 0.01 0x65039084cc6f4773291a6ed7dcf5bc3a2e894ff3.CALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    pragma solidity 0.4.4;
    /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
    /// @author Stefan George - <stefan.george@consensys.net>
    contract MultiSigWallet {
    uint constant public MAX_OWNER_COUNT = 50;
    event Confirmation(address indexed sender, uint indexed transactionId);
    event Revocation(address indexed sender, uint indexed transactionId);
    event Submission(uint indexed transactionId);
    event Execution(uint indexed transactionId);
    event ExecutionFailure(uint indexed transactionId);
    event Deposit(address indexed sender, uint value);
    event OwnerAddition(address indexed owner);
    event OwnerRemoval(address indexed owner);
    event RequirementChange(uint required);
    mapping (uint => Transaction) public transactions;
    mapping (uint => mapping (address => bool)) public confirmations;
    mapping (address => bool) public isOwner;
    address[] public owners;
    uint public required;
    uint public transactionCount;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX