Overview ERC20
Price
$0.03 @ 0.034013 xDAI (+0.28%)
Fully Diluted Market Cap
Total Supply:
20,226,784.115835 FOX
Holders:
688 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
FOX is an ERC-20 token created by ShapeShift which serves as the governance token for the ShapeShift DAO. The token supports and provides utility for a borderless, cross-chain crypto trading platform and portfolio manager for user self-sovereignty.Market
Volume (24H) | : | $65,513.00 |
Market Capitalization | : | $16,582,043.00 |
Circulating Supply | : | 490,063,390.00 FOX |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | FOX-USDT | $0.0342 0.0000012 Btc | $42,458.00 1,243,093.880 FOX | 41.0734% |
2 | ![]() | FOX-USD | $0.0338 0.0000012 Btc | $24,453.00 723,458.100 FOX | 23.9040% |
3 | ![]() | FOX-USDT | $0.0335 0.0000012 Btc | $11,798.89 348,575.065 FOX | 11.5174% |
4 | ![]() | FOX-USDT | $0.0338 0.0000012 Btc | $7,366.00 217,746.623 FOX | 7.1946% |
5 | ![]() | 0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2-0XC770EEFAD204B5180DF6A14EE197D99D808EE52D | $0.0338 0.0000012 Btc | $5,282.87 3.004 0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | 0.0001% |
6 | ![]() | FOX-RUNE | $0.034 0.0000012 Btc | $5,194.89 152,879.435 FOX | 5.0513% |
7 | ![]() | FOX-RUNE | $0.0339 0.0000012 Btc | $5,185.11 152,879.405 FOX | 5.0513% |
8 | ![]() | FOX-USDT | $0.0336 0.0000012 Btc | $3,769.35 111,183.985 FOX | 3.6737% |
9 | ![]() | FOX-ETH | $0.0357 0.0000013 Btc | $1,978.90 58,227.119 FOX | 1.9239% |
10 | ![]() | FOX-USDT | $0.034 0.0000012 Btc | $219.65 6,454.400 FOX | 0.2133% |
11 | ![]() | 0X21A42669643F45BC0E086B8FC2ED70C23D67509D-0XE91D153E0B41518A2CE8DD3D7944FA863463A97D | $0.0332 0.0000012 Btc | $194.11 5,847.608 0X21A42669643F45BC0E086B8FC2ED70C23D67509D | 0.1932% |
12 | ![]() | 0X21A42669643F45BC0E086B8FC2ED70C23D67509D-0X4291F029B9E7ACB02D49428458CF6FCEAC545F81 | $0.0332 0.0000012 Btc | $82.40 2,490.879 0X21A42669643F45BC0E086B8FC2ED70C23D67509D | 0.0823% |
13 | ![]() | 0X21A42669643F45BC0E086B8FC2ED70C23D67509D-0X4F4F9B8D5B4D0DC10506E5551B0513B61FD59E75 | $0.0332 0.0000012 Btc | $56.28 1,694.792 0X21A42669643F45BC0E086B8FC2ED70C23D67509D | 0.0560% |
14 | ![]() | 0X21A42669643F45BC0E086B8FC2ED70C23D67509D-0X71850B7E9EE3F13AB46D67167341E4BDC905EEF9 | $0.0332 0.0000012 Btc | $29.37 880.730 0X21A42669643F45BC0E086B8FC2ED70C23D67509D | 0.0291% |
15 | ![]() | 0X65A05DB8322701724C197AF82C9CAE41195B0AA8-0X7CEB23FD6BC0ADD59E62AC25578270CFF1B9F619 | $0.0339 0.0000012 Btc | $20.34 600.000 0X65A05DB8322701724C197AF82C9CAE41195B0AA8 | 0.0198% |
16 | ![]() | 0XC770EEFAD204B5180DF6A14EE197D99D808EE52D-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0349 0.0000013 Btc | $17.60 504.588 0XC770EEFAD204B5180DF6A14EE197D99D808EE52D | 0.0167% |
Contract Name:
TokenProxy
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-09 */ 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610548380380610548833981016040818152825160208401518285015160608087015160808801517f54fd4d500000000000000000000000000000000000000000000000000000000088529551949793840196929093019492939091600160a060020a038816916354fd4d509160048082019260009290919082900301818387803b1580156100a257600080fd5b505af11580156100b6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156100df57600080fd5b8101908080516401000000008111156100f757600080fd5b8201602081018481111561010a57600080fd5b815164010000000081118282018710171561012457600080fd5b50507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8a90558851909450610163935060009250602089019150610380565b508351610177906001906020870190610380565b506002805460ff851660ff1990911617905560068054600160a060020a031990811633908117909255600780549091169091179055604080517f454950373132446f6d61696e28737472696e67206e616d652c737472696e672081527f76657273696f6e2c75696e7432353620636861696e49642c61646472657373206020808301919091527f766572696679696e67436f6e74726163742900000000000000000000000000008284015291519081900360520181208751909288929182918401908083835b6020831061025c5780518252601f19909201916020918201910161023d565b51815160209384036101000a6000190180199092169116179052604051919093018190038120875190955087945090928392508401908083835b602083106102b55780518252601f199092019160209182019101610296565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208282019890985281840196909652606081019690965250608085018790523060a0808701919091528151808703909101815260c09095019081905284519093849350850191508083835b602083106103455780518252601f199092019160209182019101610326565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091206008555061041b975050505050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106103c157805160ff19168380011785556103ee565b828001600101855582156103ee579182015b828111156103ee5782518255916020019190600101906103d3565b506103fa9291506103fe565b5090565b61041891905b808211156103fa5760008155600101610404565b90565b61011e8061042a6000396000f300608060405260043610603e5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416635c60da1b81146092575b6000604660cd565b905073ffffffffffffffffffffffffffffffffffffffff81161515606957600080fd5b60405136600082376000803683855af43d82016040523d6000833e808015608e573d83f35b3d83fd5b348015609d57600080fd5b5060a460cd565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54905600a165627a7a72305820aa9e57d69a87d505ef92ae24ac9bead296073ec94235380eb982d587ab7f43150029000000000000000000000000f8d1677c8a0c961938bf2f9adc3f3cfda759a9d900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000b464f58206f6e20784461690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f580000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8d1677c8a0c961938bf2f9adc3f3cfda759a9d900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000b464f58206f6e20784461690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenImage (address): 0xf8d1677c8a0c961938bf2f9adc3f3cfda759a9d9
Arg [1] : _name (string): FOX on xDai
Arg [2] : _symbol (string): FOX
Arg [3] : _decimals (uint8): 18
Arg [4] : _chainId (uint256): 100
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8d1677c8a0c961938bf2f9adc3f3cfda759a9d9
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 464f58206f6e2078446169000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 464f580000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
4887:2504:0:-;;;;;;;;;;;;;;;;;;;;715:13;731:16;:14;:16::i;:::-;715:32;-1:-1:-1;766:19:0;;;;;758:28;;;;;;1224:4;1218:11;2005:12;2002:1;1997:3;1984:34;2936:1;2933;2919:12;2914:3;2907:5;2902:3;2889:49;3626:14;3621:3;3617:24;3611:4;3604:38;4136:14;4133:1;4128:3;4113:38;4418:6;4442:76;;;;4579:14;4574:3;4567:27;4442:76;4484:14;4479:3;4472:27;7193:195;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7193:195:0;;;;;;;;;;;;;;;;;;;;;;;;7303:66;7297:73;;7274:107::o
Swarm Source
bzzr://aa9e57d69a87d505ef92ae24ac9bead296073ec94235380eb982d587ab7f4315