BscScan - Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,485 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 44616942 | 31 days ago | IN | 0 BNB | 0.00007244 | ||||
Approve | 44419450 | 37 days ago | IN | 0 BNB | 0.00002661 | ||||
Approve | 44419422 | 37 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 44419415 | 37 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 44406891 | 38 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 44062018 | 50 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 44062015 | 50 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 43201771 | 80 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 43156197 | 81 days ago | IN | 0 BNB | 0.00002438 | ||||
Transfer | 43087855 | 84 days ago | IN | 0 BNB | 0.00004674 | ||||
Approve | 42725733 | 96 days ago | IN | 0 BNB | 0.00002438 | ||||
Transfer | 42691469 | 97 days ago | IN | 0 BNB | 0.00002964 | ||||
Transfer | 42691463 | 97 days ago | IN | 0 BNB | 0.00002963 | ||||
Transfer | 42691460 | 97 days ago | IN | 0 BNB | 0.00004674 | ||||
Approve | 41821320 | 128 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 41231095 | 148 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 41231094 | 148 days ago | IN | 0 BNB | 0.00002656 | ||||
Approve | 40563971 | 171 days ago | IN | 0 BNB | 0.00007244 | ||||
Approve | 40545222 | 172 days ago | IN | 0 BNB | 0.00007244 | ||||
Approve | 39643179 | 204 days ago | IN | 0 BNB | 0.00005107 | ||||
Approve | 39441468 | 211 days ago | IN | 0 BNB | 0.00002414 | ||||
Transfer | 39377773 | 213 days ago | IN | 0 BNB | 0.0001402 | ||||
Approve | 38685531 | 237 days ago | IN | 0 BNB | 0.00002414 | ||||
Approve | 38656131 | 238 days ago | IN | 0 BNB | 0.00007316 | ||||
Approve | 38079123 | 258 days ago | IN | 0 BNB | 0.00002414 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
12827878 | 1141 days ago | Contract Creation | 0 BNB |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x40B605d8...23cfd74d8 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MarsSwapPair
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../interfaces/IMarsSwapPair.sol"; import "../interfaces/IMarsSwapFactory.sol"; import "../libs/UQ112x112.sol"; import "./MarsSwapERC20.sol"; library Math { function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } contract MarsSwapPair is MarsSwapERC20, IMarsSwapPair { using SafeMath for uint256; using UQ112x112 for uint224; uint256 public constant override MINIMUM_LIQUIDITY = 10**3; bytes4 private constant SELECTOR = bytes4(keccak256(bytes("transfer(address,uint256)"))); address public override factory; address public override token0; address public override token1; uint112 private reserve0; // Uses single storage slot, accessible via getReserves uint112 private reserve1; // Uses single storage slot, accessible via getReserves uint32 private blockTimestampLast; // Uses single storage slot, accessible via getReserves uint256 public override price0CumulativeLast; uint256 public override price1CumulativeLast; uint256 public override kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event uint256 private unlocked = 1; modifier lock() { require(unlocked == 1, "MarsSwapPair::lock: Locked"); unlocked = 0; _; unlocked = 1; } function getReserves() public view override returns ( uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast ) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } function _safeTransfer( address token, address to, uint256 value ) private { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "MarsSwapPair::_safeTransfer: Transfer failed" ); } constructor() { factory = msg.sender; } // Called once by the factory at time of deployment function initialize(address _token0, address _token1) external override { require(msg.sender == factory, "MarsSwapPair::initialize: Forbidden"); // Sufficient check token0 = _token0; token1 = _token1; } // Update reserves and, on the first call per block, price accumulators function _update( uint256 balance0, uint256 balance1, uint112 _reserve0, uint112 _reserve1 ) private { require( balance0 <= uint112(-1) && balance1 <= uint112(-1), "MarsSwapPair::_update: Overflow" ); uint32 blockTimestamp = uint32(block.timestamp % 2**32); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // Overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { // * never overflows, and + overflow is desired price0CumulativeLast += uint256(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed; price1CumulativeLast += uint256(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed; } reserve0 = uint112(balance0); reserve1 = uint112(balance1); blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } // If fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k) function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool) { (address feeTo, bool feeOn, ) = IMarsSwapFactory(factory).fee(address(this)); uint256 _kLast = kLast; // Gas savings if (feeOn) { if (_kLast != 0) { uint256 rootK = Math.sqrt(uint256(_reserve0).mul(_reserve1)); uint256 rootKLast = Math.sqrt(_kLast); if (rootK > rootKLast) { uint256 numerator = totalSupply().mul(rootK.sub(rootKLast)); uint256 denominator = rootK .mul(IMarsSwapFactory(factory).feeStakeScale()) .add(rootKLast); uint256 liquidity = numerator / denominator; if (liquidity > 0) _mint(feeTo, liquidity); } } } else if (_kLast != 0) { kLast = 0; } return feeOn; } // This low-level function should be called from a contract which performs important safety checks function mint(address to) external override lock returns (uint256 liquidity) { (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // Gas savings uint256 balance0 = IERC20(token0).balanceOf(address(this)); uint256 balance1 = IERC20(token1).balanceOf(address(this)); uint256 amount0 = balance0.sub(_reserve0); uint256 amount1 = balance1.sub(_reserve1); bool feeOn = _mintFee(_reserve0, _reserve1); uint256 _totalSupply = totalSupply(); // Gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); // Permanently lock the first MINIMUM_LIQUIDITY tokens } else { liquidity = Math.min( amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1 ); } require( liquidity > 0, "MarsSwapPair::mint: Insufficient liquidity minted" ); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Mint(msg.sender, amount0, amount1); } // This low-level function should be called from a contract which performs important safety checks function burn(address to) external override lock returns (uint256 amount0, uint256 amount1) { (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // Gas savings address _token0 = token0; // Gas savings address _token1 = token1; // Gas savings uint256 balance0 = IERC20(_token0).balanceOf(address(this)); uint256 balance1 = IERC20(_token1).balanceOf(address(this)); uint256 liquidity = balanceOf(address(this)); bool feeOn = _mintFee(_reserve0, _reserve1); uint256 _totalSupply = totalSupply(); // Gas savings, must be defined here since totalSupply can update in _mintFee amount0 = liquidity.mul(balance0) / _totalSupply; // Using balances ensures pro-rata distribution amount1 = liquidity.mul(balance1) / _totalSupply; // Using balances ensures pro-rata distribution require( amount0 > 0 && amount1 > 0, "MarsSwapPair::burn: Insufficient liquidity burned" ); _burn(address(this), liquidity); _safeTransfer(_token0, to, amount0); _safeTransfer(_token1, to, amount1); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Burn(msg.sender, amount0, amount1, to); } // This low-level function should be called from a contract which performs important safety checks function swap( uint256 amount0Out, uint256 amount1Out, address to ) external override lock { require( amount0Out > 0 || amount1Out > 0, "MarsSwapPair::swap: Insufficient output amount" ); (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // Gas savings require( amount0Out < _reserve0 && amount1Out < _reserve1, "MarsSwapPair::swap: Insufficient liquidity" ); uint256 balance0; uint256 balance1; { // Scope for _token{0,1}, avoids stack too deep errors address _token0 = token0; address _token1 = token1; require( to != _token0 && to != _token1, "MarsSwapPair::swap: Invalid to" ); if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // Optimistically transfer tokens if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // Optimistically transfer tokens balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); } uint256 amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0; uint256 amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0; (, , uint256 feeScale) = IMarsSwapFactory(factory).fee(address(this)); uint256 fee = uint256(1000).sub(feeScale); require( amount0In > 0 || amount1In > 0, "MarsSwapPair::swap: Insufficient input amount" ); { // Scope for reserve{0,1}Adjusted, avoids stack too deep errors uint256 balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(fee)); uint256 balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(fee)); require( balance0Adjusted.mul(balance1Adjusted) >= uint256(_reserve0).mul(_reserve1).mul(1000**2), "MarsSwapPair::swap: K" ); } _update(balance0, balance1, _reserve0, _reserve1); emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to); } // Force balances to match reserves function skim(address to) external override lock { address _token0 = token0; // gas savings address _token1 = token1; // gas savings _safeTransfer( _token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0) ); _safeTransfer( _token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1) ); } // Force reserves to match balances function sync() external override lock { _update( IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1 ); } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public override(MarsSwapERC20, IMarsSwapPair) { MarsSwapERC20.permit(owner, spender, value, deadline, v, r, s); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.6; interface IMarsSwapFactory { // ----------- Events ----------- event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); // ----------- State changing api ----------- function createPair(address tokenA, address tokenB) external returns (address pair); // ----------- Governor only state changing API ----------- function setFeeTo(address) external; function setFeeScale(uint256) external; function setFeeStakeScale(uint256) external; function setFeeSpec(address pair, uint256 _feeScale) external; function setFeeNoSpec() external; // ----------- Getters ----------- function fee(address pair) external view returns ( address, bool, uint256 ); function feeTo() external view returns (address); function feeScale() external view returns (uint256); function feeStakeScale() external view returns (uint256); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IMarsSwapPair is IERC20 { // ----------- Events ----------- event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); // ----------- State changing api ----------- function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; // ----------- Getters ----------- function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.6; // A library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // Encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // Divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } }
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract MarsSwapERC20 is IERC20 { using SafeMath for uint256; string public constant name = "Mars LP Token"; string public constant symbol = "MLP"; uint8 public constant decimals = 18; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint256) public nonces; constructor() { uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256(bytes("1")), chainId, address(this) ) ); } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function approve(address spender, uint256 value) external override returns (bool) { _approve(msg.sender, spender, value); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function transfer(address to, uint256 value) external override returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom( address from, address to, uint256 value ) external override returns (bool) { if (_allowances[from][msg.sender] != uint256(-1)) { _allowances[from][msg.sender] = _allowances[from][msg.sender].sub( value ); } _transfer(from, to, value); return true; } function _mint(address to, uint256 value) internal { _totalSupply = _totalSupply.add(value); _balances[to] = _balances[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint256 value) internal { _balances[from] = _balances[from].sub(value); _totalSupply = _totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve( address owner, address spender, uint256 value ) private { _allowances[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer( address from, address to, uint256 value ) private { _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "MarsSwapERC20::permit: Expired"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline ) ) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require( recoveredAddress != address(0) && recoveredAddress == owner, "MarsSwapERC20::permit: Invalid signature" ); _approve(owner, spender, value); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636d9a640a116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a7146104da578063d505accf146104e2578063dd62ed3e14610533578063fff6cae914610561576101a9565b8063ba9a7a56146104a4578063bc25cf77146104ac578063c45a0155146104d2576101a9565b80637ecebe00116100d35780637ecebe001461040b57806389afcb441461043157806395d89b4114610470578063a9059cbb14610478576101a9565b80636d9a640a146103ab57806370a08231146103dd5780637464fc3d14610403576101a9565b806330adf81f11610166578063485cc95511610140578063485cc955146103455780635909c0d5146103755780635a3d54931461037d5780636a62784214610385576101a9565b806330adf81f14610317578063313ce5671461031f5780633644e5151461033d576101a9565b806306fdde03146101ae5780630902f1ac1461022b578063095ea7b3146102635780630dfe1681146102a357806318160ddd146102c757806323b872dd146102e1575b600080fd5b6101b6610569565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610233610592565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b61028f6004803603604081101561027957600080fd5b506001600160a01b0381351690602001356105bc565b604080519115158252519081900360200190f35b6102ab6105d3565b604080516001600160a01b039092168252519081900360200190f35b6102cf6105e2565b60408051918252519081900360200190f35b61028f600480360360608110156102f757600080fd5b506001600160a01b038135811691602081013590911690604001356105e8565b6102cf61067c565b6103276106a0565b6040805160ff9092168252519081900360200190f35b6102cf6106a5565b6103736004803603604081101561035b57600080fd5b506001600160a01b03813581169160200135166106ab565b005b6102cf610722565b6102cf610728565b6102cf6004803603602081101561039b57600080fd5b50356001600160a01b031661072e565b610373600480360360608110156103c157600080fd5b50803590602081013590604001356001600160a01b0316610a12565b6102cf600480360360208110156103f357600080fd5b50356001600160a01b0316610efb565b6102cf610f1a565b6102cf6004803603602081101561042157600080fd5b50356001600160a01b0316610f20565b6104576004803603602081101561044757600080fd5b50356001600160a01b0316610f32565b6040805192835260208301919091528051918290030190f35b6101b66112c6565b61028f6004803603604081101561048e57600080fd5b506001600160a01b0381351690602001356112e5565b6102cf6112f2565b610373600480360360208110156104c257600080fd5b50356001600160a01b03166112f8565b6102ab611464565b6102ab611473565b610373600480360360e08110156104f857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611482565b6102cf6004803603604081101561054957600080fd5b506001600160a01b038135811691602001351661149a565b6103736114c5565b6040518060400160405280600d81526020016c26b0b939902628102a37b5b2b760991b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b60006105c9338484611621565b5060015b92915050565b6006546001600160a01b031681565b60025490565b6001600160a01b038316600090815260016020908152604080832033845290915281205460001914610667576001600160a01b03841660009081526001602090815260408083203384529091529020546106429083611683565b6001600160a01b03851660009081526001602090815260408083203384529091529020555b6106728484846116e0565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b031633146106f45760405162461bcd60e51b81526004018080602001828103825260238152602001806121a76023913960400191505060405180910390fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610775576040805162461bcd60e51b815260206004820152601a60248201526000805160206121eb833981519152604482015290519081900360640190fd5b6000600c81905580610785610592565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156107d957600080fd5b505afa1580156107ed573d6000803e3d6000fd5b505050506040513d602081101561080357600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561085657600080fd5b505afa15801561086a573d6000803e3d6000fd5b505050506040513d602081101561088057600080fd5b505190506000610899836001600160701b038716611683565b905060006108b0836001600160701b038716611683565b905060006108be878761178c565b905060006108ca6105e2565b905080610903576108ef6103e86108e96108e48787611941565b6119a1565b90611683565b98506108fe60006103e86119f2565b610946565b6109436001600160701b03891661091a8684611941565b8161092157fe5b046001600160701b0389166109368685611941565b8161093d57fe5b04611a7b565b98505b600089116109855760405162461bcd60e51b81526004018080602001828103825260318152602001806122376031913960400191505060405180910390fd5b61098f8a8a6119f2565b61099b86868a8a611a91565b81156109c5576008546109c1906001600160701b0380821691600160701b900416611941565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b600c54600114610a57576040805162461bcd60e51b815260206004820152601a60248201526000805160206121eb833981519152604482015290519081900360640190fd5b6000600c5582151580610a6a5750600082115b610aa55760405162461bcd60e51b815260040180806020018281038252602e815260200180612268602e913960400191505060405180910390fd5b600080610ab0610592565b5091509150816001600160701b031685108015610ad55750806001600160701b031684105b610b105760405162461bcd60e51b815260040180806020018281038252602a81526020018061217d602a913960400191505060405180910390fd5b60065460075460009182916001600160a01b03918216919081169087168214801590610b4e5750806001600160a01b0316876001600160a01b031614155b610b9f576040805162461bcd60e51b815260206004820152601e60248201527f4d61727353776170506169723a3a737761703a20496e76616c696420746f0000604482015290519081900360640190fd5b8815610bb057610bb082888b611c5a565b8715610bc157610bc181888a611c5a565b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610c0757600080fd5b505afa158015610c1b573d6000803e3d6000fd5b505050506040513d6020811015610c3157600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610c7d57600080fd5b505afa158015610c91573d6000803e3d6000fd5b505050506040513d6020811015610ca757600080fd5b5051925060009150506001600160701b0385168890038311610cca576000610cd9565b87856001600160701b03160383035b9050600087856001600160701b0316038311610cf6576000610d05565b87856001600160701b03160383035b60055460408051636fcca69b60e01b815230600482015290519293506000926001600160a01b0390921691636fcca69b91602480820192606092909190829003018186803b158015610d5657600080fd5b505afa158015610d6a573d6000803e3d6000fd5b505050506040513d6060811015610d8057600080fd5b506040015190506000610d956103e883611683565b90506000841180610da65750600083115b610de15760405162461bcd60e51b815260040180806020018281038252602d8152602001806120f7602d913960400191505060405180910390fd5b6000610dfc610df08684611941565b6108e9896103e8611941565b90506000610e0d610df08685611941565b9050610e32620f4240610e2c6001600160701b038d8116908d16611941565b90611941565b610e3c8383611941565b1015610e87576040805162461bcd60e51b81526020600482015260156024820152744d61727353776170506169723a3a737761703a204b60581b604482015290519081900360640190fd5b5050610e9586868a8a611a91565b60408051858152602081018590528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6001600160a01b0381166000908152602081905260409020545b919050565b600b5481565b60046020526000908152604090205481565b600080600c54600114610f7a576040805162461bcd60e51b815260206004820152601a60248201526000805160206121eb833981519152604482015290519081900360640190fd5b6000600c81905580610f8a610592565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b158015610fe657600080fd5b505afa158015610ffa573d6000803e3d6000fd5b505050506040513d602081101561101057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561105e57600080fd5b505afa158015611072573d6000803e3d6000fd5b505050506040513d602081101561108857600080fd5b50519050600061109730610efb565b905060006110a5888861178c565b905060006110b16105e2565b9050806110be8487611941565b816110c557fe5b049a50806110d38486611941565b816110da57fe5b04995060008b1180156110ed575060008a115b6111285760405162461bcd60e51b815260040180806020018281038252603181526020018061214c6031913960400191505060405180910390fd5b6111323084611ddd565b61113d878d8d611c5a565b611148868d8c611c5a565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561118e57600080fd5b505afa1580156111a2573d6000803e3d6000fd5b505050506040513d60208110156111b857600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b15801561120457600080fd5b505afa158015611218573d6000803e3d6000fd5b505050506040513d602081101561122e57600080fd5b5051935061123e85858b8b611a91565b811561126857600854611264906001600160701b0380821691600160701b900416611941565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600381526020016204d4c560ec1b81525081565b60006105c93384846116e0565b6103e881565b600c5460011461133d576040805162461bcd60e51b815260206004820152601a60248201526000805160206121eb833981519152604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926113e692859287926113e1926001600160701b03169185916370a0823191602480820192602092909190829003018186803b1580156113af57600080fd5b505afa1580156113c3573d6000803e3d6000fd5b505050506040513d60208110156113d957600080fd5b505190611683565b611c5a565b61145a81846113e16008600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156113af57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b61149187878787878787611e6e565b50505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5460011461150a576040805162461bcd60e51b815260206004820152601a60248201526000805160206121eb833981519152604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b8152306004820152905161161a926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561155b57600080fd5b505afa15801561156f573d6000803e3d6000fd5b505050506040513d602081101561158557600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156115d257600080fd5b505afa1580156115e6573d6000803e3d6000fd5b505050506040513d60208110156115fc57600080fd5b50516008546001600160701b0380821691600160701b900416611a91565b6001600c55565b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828211156116da576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166000908152602081905260409020546117039082611683565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117329082612065565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60055460408051636fcca69b60e01b81523060048201529051600092839283926001600160a01b0390921691636fcca69b91602480820192606092909190829003018186803b1580156117de57600080fd5b505afa1580156117f2573d6000803e3d6000fd5b505050506040513d606081101561180857600080fd5b508051602090910151600b549193509150811561192c5780156119275760006118406108e46001600160701b03898116908916611941565b9050600061184d836119a1565b90508082111561192457600061186e6118668484611683565b610e2c6105e2565b90506000611900836118fa600560009054906101000a90046001600160a01b03166001600160a01b031663b68738666040518163ffffffff1660e01b815260040160206040518083038186803b1580156118c757600080fd5b505afa1580156118db573d6000803e3d6000fd5b505050506040513d60208110156118f157600080fd5b50518790611941565b90612065565b9050600081838161190d57fe5b04905080156119205761192088826119f2565b5050505b50505b611938565b8015611938576000600b555b50949350505050565b600082611950575060006105cd565b8282028284828161195d57fe5b041461199a5760405162461bcd60e51b81526004018080602001828103825260218152602001806121ca6021913960400191505060405180910390fd5b9392505050565b600060038211156119e4575080600160028204015b818110156119de578091506002818285816119cd57fe5b0401816119d657fe5b0490506119b6565b50610f15565b8115610f1557506001919050565b6002546119ff9082612065565b6002556001600160a01b038216600090815260208190526040902054611a259082612065565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310611a8a578161199a565b5090919050565b6001600160701b038411801590611aaf57506001600160701b038311155b611b00576040805162461bcd60e51b815260206004820152601f60248201527f4d61727353776170506169723a3a5f7570646174653a204f766572666c6f7700604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611b3057506001600160701b03841615155b8015611b4457506001600160701b03831615155b15611baf578063ffffffff16611b6c85611b5d866120bf565b6001600160e01b0316906120d1565b600980546001600160e01b03929092169290920201905563ffffffff8116611b9784611b5d876120bf565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b17815292518151600094859489169392918291908083835b60208310611d065780518252601f199092019160209182019101611ce7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d68576040519150601f19603f3d011682016040523d82523d6000602084013e611d6d565b606091505b5091509150818015611d9b575080511580611d9b5750808060200190516020811015611d9857600080fd5b50515b611dd65760405162461bcd60e51b815260040180806020018281038252602c81526020018061220b602c913960400191505060405180910390fd5b5050505050565b6001600160a01b038216600090815260208190526040902054611e009082611683565b6001600160a01b038316600090815260208190526040902055600254611e269082611683565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b42841015611ec3576040805162461bcd60e51b815260206004820152601e60248201527f4d6172735377617045524332303a3a7065726d69743a20457870697265640000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611fde573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906120145750886001600160a01b0316816001600160a01b0316145b61204f5760405162461bcd60e51b81526004018080602001828103825260288152602001806121246028913960400191505060405180910390fd5b61205a898989611621565b505050505050505050565b60008282018381101561199a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816120ee57fe5b04939250505056fe4d61727353776170506169723a3a737761703a20496e73756666696369656e7420696e70757420616d6f756e744d6172735377617045524332303a3a7065726d69743a20496e76616c6964207369676e61747572654d61727353776170506169723a3a6275726e3a20496e73756666696369656e74206c6971756964697479206275726e65644d61727353776170506169723a3a737761703a20496e73756666696369656e74206c69717569646974794d61727353776170506169723a3a696e697469616c697a653a20466f7262696464656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d61727353776170506169723a3a6c6f636b3a204c6f636b65640000000000004d61727353776170506169723a3a5f736166655472616e736665723a205472616e73666572206661696c65644d61727353776170506169723a3a6d696e743a20496e73756666696369656e74206c6971756964697479206d696e7465644d61727353776170506169723a3a737761703a20496e73756666696369656e74206f757470757420616d6f756e74a2646970667358221220f3c0258eac1d2adecad830e2b9fecb3c530414b9f224b27045235f61d8408d8664736f6c63430007060033
Loading...
Loading
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.