ETH Price: $3,316.44 (-0.55%)

Contract

0x4E8703a59FEc01A97d4d2D76271E4F086dbB52Fc
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MultiAssetEmitter

Compiler Version
v0.3.5-nightly.2016.7.1+commit.48238c9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-08-02
*/

// 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 EventsHistory {
    function versions(address) constant returns(uint);
}

/**
 * @title MultiAsset Emitter.
 *
 * Contains all the original event emitting function definitions and events.
 * In case of new events needed later, additional emitters can be developed.
 * All the functions is meant to be called using delegatecall.
 */
library MultiAssetEmitter {
    event Transfer(address indexed from, address indexed to, bytes32 indexed symbol, uint value, string reference, uint version);
    event Issue(bytes32 indexed symbol, uint value, address by, uint version);
    event Revoke(bytes32 indexed symbol, uint value, address by, uint version);
    event OwnershipChange(address indexed from, address indexed to, bytes32 indexed symbol, uint version);
    event Approve(address indexed from, address indexed spender, bytes32 indexed symbol, uint value, uint version);
    event Recovery(address indexed from, address indexed to, address by, uint version);
    event TransferToICAP(address indexed from, address indexed to, bytes32 indexed icap, uint value, string reference, uint version);
    event Error(bytes32 message, uint version);
    
    function emitTransfer(address _from, address _to, bytes32 _symbol, uint _value, string _reference) {
        Transfer(_from, _to, _symbol, _value, _reference, _getVersion());
    }

    function emitIssue(bytes32 _symbol, uint _value, address _by) {
        Issue(_symbol, _value, _by, _getVersion());
    }

    function emitRevoke(bytes32 _symbol, uint _value, address _by) {
        Revoke(_symbol, _value, _by, _getVersion());
    }

    function emitOwnershipChange(address _from, address _to, bytes32 _symbol) {
        OwnershipChange(_from, _to, _symbol, _getVersion());
    }

    function emitApprove(address _from, address _spender, bytes32 _symbol, uint _value) {
        Approve(_from, _spender, _symbol, _value, _getVersion());
    }

    function emitRecovery(address _from, address _to, address _by) {
        Recovery(_from, _to, _by, _getVersion());
    }

    function emitTransferToICAP(address _from, address _to, bytes32 _icap, uint _value, string _reference) {
        TransferToICAP(_from, _to, _icap, _value, _reference, _getVersion());
    }

    function emitError(bytes32 _message) {
        Error(_message, _getVersion());
    }

    /**
     * Get version number of the caller.
     *
     * Assuming that the call is made by EventsHistory using delegate call,
     * context was not changed, so the caller is the address that called
     * EventsHistory.
     *
     * @return current context caller version number.
     */
    function _getVersion() constant internal returns(uint) {
        return EventsHistory(address(this)).versions(msg.sender);
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_symbol","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"emitTransfer","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_symbol","type":"bytes32"}],"name":"emitOwnershipChange","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_by","type":"address"}],"name":"emitIssue","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_by","type":"address"}],"name":"emitRevoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_spender","type":"address"},{"name":"_symbol","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"emitApprove","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_message","type":"bytes32"}],"name":"emitError","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_by","type":"address"}],"name":"emitRecovery","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"emitTransferToICAP","outputs":[],"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"symbol","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"reference","type":"string"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"symbol","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"by","type":"address"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"symbol","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"by","type":"address"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"symbol","type":"bytes32"},{"indexed":false,"name":"version","type":"uint256"}],"name":"OwnershipChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":true,"name":"symbol","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Approve","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"by","type":"address"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Recovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"icap","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"reference","type":"string"},{"indexed":false,"name":"version","type":"uint256"}],"name":"TransferToICAP","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"message","type":"bytes32"},{"indexed":false,"name":"version","type":"uint256"}],"name":"Error","type":"event"}]

6060604052610480806100126000396000f365030548238c9f50606060405236156100745760e060020a6000350463515c14578114610079578063a9612f7214610157578063abafaa161461019b578063c70bbc13146101d3578063d54c8c871461020b578063e90459f814610253578063ea14457e14610283578063eacbc236146102cd575b610007565b604080516020601f608435600481810135928301849004840285018401909552818452610358948035946024803595604435956064359560a494930191819084018382808284375094965050505050505082600160a060020a038581169087167f940c4b3549ef0aaff95807dc27f62d88ca15532d1bf535d7d63800f40395d16c858561035a5b600030600160a060020a031663488725a0336040518260e060020a0281526004018082600160a060020a031681526020019150506020604051808303816000876161da5a03f1156100075750506040515191505090565b61035860043560243560443580600160a060020a038381169085167fa036716ab3217ba2d7f6383a8920773cfbc7185b3067a4a21976874bd6054c876103dc610100565b610358600435602435604435827f714f05963641b102fcb29deecd03fea4afc12aaae3cd7406997aded1d73c668683836103f2610100565b610358600435602435604435827f21195415ad67207115fc69a0e6ee5f2e2bdb4751d3735084da4d1874c41f216383836103f2610100565b61035860043560243560443560643581600160a060020a038481169086167f389385fc5633d833d54b67ef0b0b6f5d82b17f93ecc47a4912173ddbb63e37458461041d610100565b6103586004357f8ad05dce3378dc14d17bd145d839c5206f23b9fab3f6d3abee1906c086d256618161043b610100565b61035860043560243560443581600160a060020a031683600160a060020a03167fd38446e28363d997bb622c062a6547eec58c45aaa846edce4ad14ebd982e1d9d83610456610100565b604080516020601f608435600481810135928301849004840285018401909552818452610358948035946024803595604435956064359560a494930191819084018382808284375094965050505050505082600160a060020a038581169087167f8a95e3fbb777c23aeda3e2d69b9b9859e67501dfa72116a1c4e7749d29b0a7cb858561035a610100565b005b60405180848152602001806020018381526020018281038252848181518152602001915080519060200190808383829060006004602084601f0104600f02600301f150905090810190601f1680156103c65780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a45050505050565b60408051918252519081900360200190a4505050565b60408051938452600160a060020a0392909216602084015282820152519081900360600190a2505050565b6040805192835260208301919091528051918290030190a450505050565b6040805192835260208301919091528051918290030190a150565b6040518083600160a060020a031681526020018281526020019250505060405180910390a350505056

Deployed Bytecode

0x65030548238c9f50606060405236156100745760e060020a6000350463515c14578114610079578063a9612f7214610157578063abafaa161461019b578063c70bbc13146101d3578063d54c8c871461020b578063e90459f814610253578063ea14457e14610283578063eacbc236146102cd575b610007565b604080516020601f608435600481810135928301849004840285018401909552818452610358948035946024803595604435956064359560a494930191819084018382808284375094965050505050505082600160a060020a038581169087167f940c4b3549ef0aaff95807dc27f62d88ca15532d1bf535d7d63800f40395d16c858561035a5b600030600160a060020a031663488725a0336040518260e060020a0281526004018082600160a060020a031681526020019150506020604051808303816000876161da5a03f1156100075750506040515191505090565b61035860043560243560443580600160a060020a038381169085167fa036716ab3217ba2d7f6383a8920773cfbc7185b3067a4a21976874bd6054c876103dc610100565b610358600435602435604435827f714f05963641b102fcb29deecd03fea4afc12aaae3cd7406997aded1d73c668683836103f2610100565b610358600435602435604435827f21195415ad67207115fc69a0e6ee5f2e2bdb4751d3735084da4d1874c41f216383836103f2610100565b61035860043560243560443560643581600160a060020a038481169086167f389385fc5633d833d54b67ef0b0b6f5d82b17f93ecc47a4912173ddbb63e37458461041d610100565b6103586004357f8ad05dce3378dc14d17bd145d839c5206f23b9fab3f6d3abee1906c086d256618161043b610100565b61035860043560243560443581600160a060020a031683600160a060020a03167fd38446e28363d997bb622c062a6547eec58c45aaa846edce4ad14ebd982e1d9d83610456610100565b604080516020601f608435600481810135928301849004840285018401909552818452610358948035946024803595604435956064359560a494930191819084018382808284375094965050505050505082600160a060020a038581169087167f8a95e3fbb777c23aeda3e2d69b9b9859e67501dfa72116a1c4e7749d29b0a7cb858561035a610100565b005b60405180848152602001806020018381526020018281038252848181518152602001915080519060200190808383829060006004602084601f0104600f02600301f150905090810190601f1680156103c65780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a45050505050565b60408051918252519081900360200190a4505050565b60408051938452600160a060020a0392909216602084015282820152519081900360600190a2505050565b6040805192835260208301919091528051918290030190a450505050565b6040805192835260208301919091528051918290030190a150565b6040518083600160a060020a031681526020018281526020019250505060405180910390a350505056

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.