xDAI Price: $0.999927 (-0.02%)
Gas: 1.1 GWei

Contract

0x8A95ea379E1Fa4C749dd0A7A21377162028C479e

Overview

xDAI Balance

Gnosis Chain LogoGnosis Chain LogoGnosis Chain Logo0 xDAI

xDAI Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve388079712025-03-01 9:19:2025 days ago1740820760IN
Gnosis: AUDIO Token
0 xDAI0.000054211
Transfer387429282025-02-25 12:58:0529 days ago1740488285IN
Gnosis: AUDIO Token
0 xDAI00.00000999
Transfer382322072025-01-26 4:45:0559 days ago1737866705IN
Gnosis: AUDIO Token
0 xDAI0.000054981
Approve363902982024-10-07 22:26:30169 days ago1728339990IN
Gnosis: AUDIO Token
0 xDAI0.000061942.1
Approve354195272024-08-10 22:30:45227 days ago1723329045IN
Gnosis: AUDIO Token
0 xDAI0.000064892.2
Approve354122952024-08-10 12:05:40228 days ago1723291540IN
Gnosis: AUDIO Token
0 xDAI0.000047191.6
Approve348595242024-07-08 10:11:15261 days ago1720433475IN
Gnosis: AUDIO Token
0 xDAI0.0001143.86517016
Approve346230092024-06-24 6:02:55275 days ago1719208975IN
Gnosis: AUDIO Token
0 xDAI0.0029273454
Approve343901372024-06-10 8:37:30289 days ago1718008650IN
Gnosis: AUDIO Token
0 xDAI0.000100783.2
Approve343898782024-06-10 8:15:05289 days ago1718007305IN
Gnosis: AUDIO Token
0 xDAI0.000100283.4
Approve343898352024-06-10 8:11:25289 days ago1718007085IN
Gnosis: AUDIO Token
0 xDAI0.000103233.5
Approve343431442024-06-07 12:52:45292 days ago1717764765IN
Gnosis: AUDIO Token
0 xDAI0.0005869719.9
Approve338582242024-05-09 14:38:45321 days ago1715265525IN
Gnosis: AUDIO Token
0 xDAI0.000058992
Approve336689172024-04-28 7:02:55332 days ago1714287775IN
Gnosis: AUDIO Token
0 xDAI0.000044241.5
Transfer332026542024-03-31 6:22:25360 days ago1711866145IN
Gnosis: AUDIO Token
0 xDAI0.000182663.32217603
Approve320609922024-01-21 20:39:40429 days ago1705869580IN
Gnosis: AUDIO Token
0 xDAI0.000213297.2314324
Approve320536102024-01-21 9:52:10430 days ago1705830730IN
Gnosis: AUDIO Token
0 xDAI0.000084552.86664158
Approve318989412024-01-11 21:10:05439 days ago1705007405IN
Gnosis: AUDIO Token
0 xDAI0.000064892.2
Approve318223372024-01-07 2:46:40444 days ago1704595600IN
Gnosis: AUDIO Token
0 xDAI0.000115373.91151634
Approve318109542024-01-06 9:51:40445 days ago1704534700IN
Gnosis: AUDIO Token
0 xDAI0.000086731.6
Approve309795172023-11-16 12:44:55496 days ago1700138695IN
Gnosis: AUDIO Token
0 xDAI0.000882917.1464161
Approve302459212023-10-01 14:42:55542 days ago1696171375IN
Gnosis: AUDIO Token
0 xDAI0.000146732.70671201
Approve301595222023-09-26 6:02:15547 days ago1695708135IN
Gnosis: AUDIO Token
0 xDAI0.000077231.5
Approve299011732023-09-10 6:47:50563 days ago1694328470IN
Gnosis: AUDIO Token
0 xDAI0.000108422
Approve294929812023-08-16 17:59:15588 days ago1692208755IN
Gnosis: AUDIO Token
0 xDAI0.000058992
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
145757452021-02-16 13:32:101499 days ago1613482330  Contract Creation0 xDAI
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xD057604A...7eA142a08
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TokenProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at gnosisscan.io on 2024-02-27
*/

/**
* Submitted for verification at blockscout.com on 2020-12-16 19:43:12.014273Z
*/
pragma solidity 0.4.24;

/**
 * @title Proxy
 * @dev Gives the possibility to delegate any call to a foreign implementation.
 */
contract Proxy {
    /**
    * @dev Tells the address of the implementation where every call will be delegated.
    * @return address of the implementation to which it will be delegated
    */
    /* solcov ignore next */
    function implementation() public view returns (address);

    /**
    * @dev Fallback function allowing to perform a delegatecall to the given implementation.
    * This function will return whatever the implementation call returns
    */
    function() public payable {
        // solhint-disable-previous-line no-complex-fallback
        address _impl = implementation();
        require(_impl != address(0));
        assembly {
            /*
                0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                memory. It's needed because we're going to write the return data of delegatecall to the
                free memory slot.
            */
            let ptr := mload(0x40)
            /*
                `calldatacopy` is copy calldatasize bytes from calldata
                First argument is the destination to which data is copied(ptr)
                Second argument specifies the start position of the copied data.
                    Since calldata is sort of its own unique location in memory,
                    0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                    That's always going to be the zeroth byte of the function selector.
                Third argument, calldatasize, specifies how much data will be copied.
                    calldata is naturally calldatasize bytes long (same thing as msg.data.length)
            */
            calldatacopy(ptr, 0, calldatasize)
            /*
                delegatecall params explained:
                gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                    us the amount of gas still available to execution

                _impl: address of the contract to delegate to

                ptr: to pass copied data

                calldatasize: loads the size of `bytes memory data`, same as msg.data.length

                0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                        these are set to 0, 0 so the output data will not be written to memory. The output
                        data will be read using `returndatasize` and `returdatacopy` instead.

                result: This will be 0 if the call fails and 1 if it succeeds
            */
            let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
            /*

            */
            /*
                ptr current points to the value stored at 0x40,
                because we assigned it like ptr := mload(0x40).
                Because we use 0x40 as a free memory pointer,
                we want to make sure that the next time we want to allocate memory,
                we aren't overwriting anything important.
                So, by adding ptr and returndatasize,
                we get a memory location beyond the end of the data we will be copying to ptr.
                We place this in at 0x40, and any reads from 0x40 will now read from free memory
            */
            mstore(0x40, add(ptr, returndatasize))
            /*
                `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                    slot it will copy to, 0 means copy from the beginning of the return data, and size is
                    the amount of data to copy.
                `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
            */
            returndatacopy(ptr, 0, returndatasize)

            /*
                if `result` is 0, revert.
                if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                copied to `ptr` from the delegatecall return data
            */
            switch result
                case 0 {
                    revert(ptr, returndatasize)
                }
                default {
                    return(ptr, returndatasize)
                }
        }
    }
}

interface IPermittableTokenVersion {
    function version() external pure returns (string);
}

/**
* @title TokenProxy
* @dev Helps to reduces the size of the deployed bytecode for automatically created tokens, by using a proxy contract.
*/
contract TokenProxy is Proxy {
    // storage layout is copied from PermittableToken.sol
    string internal name;
    string internal symbol;
    uint8 internal decimals;
    mapping(address => uint256) internal balances;
    uint256 internal totalSupply;
    mapping(address => mapping(address => uint256)) internal allowed;
    address internal owner;
    bool internal mintingFinished;
    address internal bridgeContractAddr;
    // string public constant version = "1";
    bytes32 internal DOMAIN_SEPARATOR;
    // bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb;
    mapping(address => uint256) internal nonces;
    mapping(address => mapping(address => uint256)) internal expirations;

    /**
    * @dev Creates a non-upgradeable token proxy for PermitableToken.sol, initializes its eternalStorage.
    * @param _tokenImage address of the token image used for mirrowing all functions.
    * @param _name token name.
    * @param _symbol token symbol.
    * @param _decimals token decimals.
    * @param _chainId chain id for current network.
    */
    constructor(address _tokenImage, string memory _name, string memory _symbol, uint8 _decimals, uint256 _chainId)
        public
    {
        string memory version = IPermittableTokenVersion(_tokenImage).version();

        assembly {
            // EIP 1967
            // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)
            sstore(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc, _tokenImage)
        }
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        owner = msg.sender; // msg.sender == HomeMultiAMBErc20ToErc677 mediator
        bridgeContractAddr = msg.sender;
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(_name)),
                keccak256(bytes(version)),
                _chainId,
                address(this)
            )
        );
    }

    /**
    * @dev Retrieves the implementation contract address, mirrowed token image.
    * @return token image address.
    */
    function implementation() public view returns (address impl) {
        assembly {
            impl := sload(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc)
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"impl","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_tokenImage","type":"address"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_chainId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405260043610603e5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416635c60da1b81146092575b6000604660cd565b905073ffffffffffffffffffffffffffffffffffffffff81161515606957600080fd5b60405136600082376000803683855af43d82016040523d6000833e808015608e573d83f35b3d83fd5b348015609d57600080fd5b5060a460cd565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54905600a165627a7a7230582034da58b5567cb69b69fa69e0e2201b959d96b8a3720dfa4a43427289723d36cc0029

Deployed Bytecode Sourcemap

4975:2504:0:-;;;;;;;;;;;;;;;;;;;;803:13;819:16;:14;:16::i;:::-;803:32;-1:-1:-1;854:19:0;;;;;846:28;;;;;;1312:4;1306:11;2093:12;2090:1;2085:3;2072:34;3024:1;3021;3007:12;3002:3;2995:5;2990:3;2977:49;3714:14;3709:3;3705:24;3699:4;3692:38;4224:14;4221:1;4216:3;4201:38;4506:6;4530:76;;;;4667:14;4662:3;4655:27;4530:76;4572:14;4567:3;4560:27;7281:195;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7281:195:0;;;;;;;;;;;;;;;;;;;;;;;;7391:66;7385:73;;7362:107::o

Swarm Source

bzzr://34da58b5567cb69b69fa69e0e2201b959d96b8a3720dfa4a43427289723d36cc

Block Transaction Gas Used Reward
view all blocks validated

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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.