Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 138 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Remove For Treas... | 13397443 | 1187 days ago | IN | 0 ETH | 0.00427405 | ||||
Lock | 13376036 | 1190 days ago | IN | 0 ETH | 0.0076257 | ||||
Lock | 13375969 | 1190 days ago | IN | 0 ETH | 0.00704595 | ||||
Lock | 13375738 | 1190 days ago | IN | 0 ETH | 0.01125806 | ||||
Lock | 13372394 | 1191 days ago | IN | 0 ETH | 0.01274626 | ||||
Lock | 13371628 | 1191 days ago | IN | 0 ETH | 0.00767263 | ||||
Lock | 13371614 | 1191 days ago | IN | 0 ETH | 0.00753943 | ||||
Lock | 13371536 | 1191 days ago | IN | 0 ETH | 0.00655491 | ||||
Lock | 13371523 | 1191 days ago | IN | 0 ETH | 0.00734712 | ||||
Lock | 13371393 | 1191 days ago | IN | 0 ETH | 0.00702784 | ||||
Lock | 13371058 | 1191 days ago | IN | 0 ETH | 0.00416264 | ||||
Lock | 13371056 | 1191 days ago | IN | 0 ETH | 0.00714951 | ||||
Lock | 13370921 | 1191 days ago | IN | 0 ETH | 0.00637643 | ||||
Lock | 13370894 | 1191 days ago | IN | 0 ETH | 0.00853964 | ||||
Lock | 13370785 | 1191 days ago | IN | 0 ETH | 0.00678312 | ||||
Lock | 13370680 | 1191 days ago | IN | 0 ETH | 0.00807992 | ||||
Lock | 13370672 | 1191 days ago | IN | 0 ETH | 0.00808901 | ||||
Lock | 13370657 | 1191 days ago | IN | 0 ETH | 0.00845364 | ||||
Lock | 13370638 | 1191 days ago | IN | 0 ETH | 0.00890606 | ||||
Lock | 13370565 | 1191 days ago | IN | 0 ETH | 0.00580167 | ||||
Lock | 13370565 | 1191 days ago | IN | 0 ETH | 0.00892576 | ||||
Lock | 13370554 | 1191 days ago | IN | 0 ETH | 0.00946002 | ||||
Lock | 13370215 | 1191 days ago | IN | 0 ETH | 0.00837235 | ||||
Lock | 13370149 | 1191 days ago | IN | 0 ETH | 0.00844816 | ||||
Lock | 13369993 | 1191 days ago | IN | 0 ETH | 0.02040984 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StabilizeMigrationPool
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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); function decimals() external view returns (uint8); /** * @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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.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, 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold 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; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _governance; event GovernanceTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _governance = msgSender; emit GovernanceTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function governance() public view returns (address) { return _governance; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyGovernance() { require(_governance == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferGovernance(address newOwner) internal virtual onlyGovernance { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit GovernanceTransferred(_governance, newOwner); _governance = newOwner; } } // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/StabilizeMigrationPool.sol pragma solidity =0.6.6; // This is for locking of STBZ in preparation for Arbitrum contract StabilizeMigrationPool is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address; /* ========== STATE VARIABLES ========== */ IERC20 lockedToken; uint256 private _totalLocked; mapping(address => uint256) private _balances; uint256 public migrationEnd; /* ========== EVENTS ========== */ event TokenLocked(address indexed user, uint256 amount); /* ========== CONSTRUCTOR ========== */ constructor( address _token ) public { lockedToken = IERC20(_token); migrationEnd = now.add(16 days); // Can migrate tokens up to 16 days from contract launch } /* ========== VIEWS ========== */ function totalLocked() external view returns (uint256) { return _totalLocked; } function userBalance(address account) external view returns (uint256) { return _balances[account]; } /* ========== MUTATIVE FUNCTIONS ========== */ function lock(uint256 amount) external nonReentrant { require(amount > 0, "Cannot stake 0"); require(now < migrationEnd, "Too late to lock tokens"); _totalLocked = _totalLocked.add(amount); _balances[_msgSender()] = _balances[_msgSender()].add(amount); lockedToken.safeTransferFrom(_msgSender(), address(this), amount); emit TokenLocked(_msgSender(), amount); } /* ========== RESTRICTED FUNCTIONS ========== */ function removeForTreasuryBurn() external onlyGovernance { // After migration ends, governance will burn these tokens into the treasury furnace require(now > migrationEnd, "Too early to move tokens to Treasury Furnace"); lockedToken.safeTransfer(governance(), lockedToken.balanceOf(address(this))); } // Governance functions // Timelock variables uint256 private _timelockStart; // The start of the timelock to change governance variables uint256 private _timelockType; // The function that needs to be changed uint256 constant TIMELOCK_DURATION = 86400; // Timelock is 24 hours // Reusable timelock variables address private _timelock_address; modifier timelockConditionsMet(uint256 _type) { require(_timelockType == _type, "Timelock not acquired for this function"); _timelockType = 0; // Reset the type once the timelock is used require(now >= _timelockStart + TIMELOCK_DURATION, "Timelock time not met"); _; } // Change the owner of the token contract // -------------------- function startGovernanceChange(address _address) external onlyGovernance { _timelockStart = now; _timelockType = 1; _timelock_address = _address; } function finishGovernanceChange() external onlyGovernance timelockConditionsMet(1) { transferGovernance(_timelock_address); } // -------------------- }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenLocked","type":"event"},{"inputs":[],"name":"finishGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrationEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeForTreasuryBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"userBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610d22380380610d228339818101604052602081101561003357600080fd5b505160006100486001600160e01b036100d216565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80908290a35060018055600280546001600160a01b0319166001600160a01b0383161790556100c942621518006100d6602090811b61077617901c565b60055550610137565b3390565b600082820183811015610130576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610bdc806101466000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80635aa6e6751161005b5780635aa6e675146100df578063b919507214610103578063dd4670641461010b578063f80087761461012857610088565b80630103c92b1461008d5780630c8f2663146100c5578063355902a7146100cd57806356891412146100d7575b600080fd5b6100b3600480360360208110156100a357600080fd5b50356001600160a01b031661014e565b60408051918252519081900360200190f35b6100b3610169565b6100d561016f565b005b6100b36102a4565b6100e76102aa565b604080516001600160a01b039092168252519081900360200190f35b6100d56102b9565b6100d56004803603602081101561012157600080fd5b50356103c4565b6100d56004803603602081101561013e57600080fd5b50356001600160a01b03166105a0565b6001600160a01b031660009081526004602052604090205490565b60055481565b610177610623565b6000546001600160a01b039081169116146101c7576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b60055442116102075760405162461bcd60e51b815260040180806020018281038252602c815260200180610b51602c913960400191505060405180910390fd5b6102a26102126102aa565b600254604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561025d57600080fd5b505afa158015610271573d6000803e3d6000fd5b505050506040513d602081101561028757600080fd5b50516002546001600160a01b0316919063ffffffff61062716565b565b60035490565b6000546001600160a01b031690565b6102c1610623565b6000546001600160a01b03908116911614610311576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b600180600754146103535760405162461bcd60e51b8152600401808060200182810382526027815260200180610b0a6027913960400191505060405180910390fd5b600060075560065462015180014210156103ac576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b6008546103c1906001600160a01b031661067e565b50565b6002600154141561041c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015580610464576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b60055442106104ba576040805162461bcd60e51b815260206004820152601760248201527f546f6f206c61746520746f206c6f636b20746f6b656e73000000000000000000604482015290519081900360640190fd5b6003546104cd908263ffffffff61077616565b60035561050681600460006104e0610623565b6001600160a01b031681526020810191909152604001600020549063ffffffff61077616565b60046000610512610623565b6001600160a01b03168152602081019190915260400160002055610551610537610623565b6002546001600160a01b031690308463ffffffff6107d716565b610559610623565b6001600160a01b03167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a826040518082815260200191505060405180910390a25060018055565b6105a8610623565b6000546001600160a01b039081169116146105f8576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b426006556001600755600880546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610679908490610837565b505050565b610686610623565b6000546001600160a01b039081169116146106d6576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b6001600160a01b03811661071b5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156107d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610831908590610837565b50505050565b606061088c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166108e89092919063ffffffff16565b805190915015610679578080602001905160208110156108ab57600080fd5b50516106795760405162461bcd60e51b815260040180806020018281038252602a815260200180610b7d602a913960400191505060405180910390fd5b60606108f784846000856108ff565b949350505050565b606061090a85610aaa565b61095b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061099a5780518252601f19909201916020918201910161097b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146109fc576040519150601f19603f3d011682016040523d82523d6000602084013e610a01565b606091505b50915091508115610a155791506108f79050565b805115610a255780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a6f578181015183820152602001610a57565b50505050905090810190601f168015610a9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906108f757505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737354696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572546f6f206561726c7920746f206d6f766520746f6b656e7320746f205472656173757279204675726e6163655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212205eafe53b80840bd8f518b511bfaff1d3508a21af143de661aabe253c0249739464736f6c63430006060033000000000000000000000000b987d48ed8f2c468d52d6405624eadba5e76d723
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c80635aa6e6751161005b5780635aa6e675146100df578063b919507214610103578063dd4670641461010b578063f80087761461012857610088565b80630103c92b1461008d5780630c8f2663146100c5578063355902a7146100cd57806356891412146100d7575b600080fd5b6100b3600480360360208110156100a357600080fd5b50356001600160a01b031661014e565b60408051918252519081900360200190f35b6100b3610169565b6100d561016f565b005b6100b36102a4565b6100e76102aa565b604080516001600160a01b039092168252519081900360200190f35b6100d56102b9565b6100d56004803603602081101561012157600080fd5b50356103c4565b6100d56004803603602081101561013e57600080fd5b50356001600160a01b03166105a0565b6001600160a01b031660009081526004602052604090205490565b60055481565b610177610623565b6000546001600160a01b039081169116146101c7576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b60055442116102075760405162461bcd60e51b815260040180806020018281038252602c815260200180610b51602c913960400191505060405180910390fd5b6102a26102126102aa565b600254604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561025d57600080fd5b505afa158015610271573d6000803e3d6000fd5b505050506040513d602081101561028757600080fd5b50516002546001600160a01b0316919063ffffffff61062716565b565b60035490565b6000546001600160a01b031690565b6102c1610623565b6000546001600160a01b03908116911614610311576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b600180600754146103535760405162461bcd60e51b8152600401808060200182810382526027815260200180610b0a6027913960400191505060405180910390fd5b600060075560065462015180014210156103ac576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b6008546103c1906001600160a01b031661067e565b50565b6002600154141561041c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015580610464576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b60055442106104ba576040805162461bcd60e51b815260206004820152601760248201527f546f6f206c61746520746f206c6f636b20746f6b656e73000000000000000000604482015290519081900360640190fd5b6003546104cd908263ffffffff61077616565b60035561050681600460006104e0610623565b6001600160a01b031681526020810191909152604001600020549063ffffffff61077616565b60046000610512610623565b6001600160a01b03168152602081019190915260400160002055610551610537610623565b6002546001600160a01b031690308463ffffffff6107d716565b610559610623565b6001600160a01b03167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a826040518082815260200191505060405180910390a25060018055565b6105a8610623565b6000546001600160a01b039081169116146105f8576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b426006556001600755600880546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610679908490610837565b505050565b610686610623565b6000546001600160a01b039081169116146106d6576040805162461bcd60e51b81526020600482018190526024820152600080516020610b31833981519152604482015290519081900360640190fd5b6001600160a01b03811661071b5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156107d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610831908590610837565b50505050565b606061088c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166108e89092919063ffffffff16565b805190915015610679578080602001905160208110156108ab57600080fd5b50516106795760405162461bcd60e51b815260040180806020018281038252602a815260200180610b7d602a913960400191505060405180910390fd5b60606108f784846000856108ff565b949350505050565b606061090a85610aaa565b61095b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061099a5780518252601f19909201916020918201910161097b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146109fc576040519150601f19603f3d011682016040523d82523d6000602084013e610a01565b606091505b50915091508115610a155791506108f79050565b805115610a255780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a6f578181015183820152602001610a57565b50505050905090810190601f168015610a9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906108f757505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737354696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572546f6f206561726c7920746f206d6f766520746f6b656e7320746f205472656173757279204675726e6163655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212205eafe53b80840bd8f518b511bfaff1d3508a21af143de661aabe253c0249739464736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b987d48ed8f2c468d52d6405624eadba5e76d723
-----Decoded View---------------
Arg [0] : _token (address): 0xB987D48Ed8f2C468D52D6405624EADBa5e76d723
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b987d48ed8f2c468d52d6405624eadba5e76d723
Deployed Bytecode Sourcemap
23847:3067:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23847:3067:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;24731:114:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24731:114:0;-1:-1:-1;;;;;24731:114:0;;:::i;:::-;;;;;;;;;;;;;;;;24187:27;;;:::i;25396:337::-;;;:::i;:::-;;24630:93;;;:::i;20314:89::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20314:89:0;;;;;;;;;;;;;;26737:139;;;:::i;24907:425::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24907:425:0;;:::i;26539:186::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26539:186:0;-1:-1:-1;;;;;26539:186:0;;:::i;24731:114::-;-1:-1:-1;;;;;24819:18:0;24792:7;24819:18;;;:9;:18;;;;;;;24731:114::o;24187:27::-;;;;:::o;25396:337::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;25577:12:::1;;25571:3;:18;25563:75;;;;-1:-1:-1::0;;;25563:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25649:76;25674:12;:10;:12::i;:::-;25688:11;::::0;:36:::1;::::0;;-1:-1:-1;;;25688:36:0;;25718:4:::1;25688:36;::::0;::::1;::::0;;;-1:-1:-1;;;;;25688:11:0;;::::1;::::0;:21:::1;::::0;:36;;;;;::::1;::::0;;;;;;;;;:11;:36;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;25688:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;25688:36:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;25688:36:0;25649:11:::1;::::0;-1:-1:-1;;;;;25649:11:0::1;::::0;:76;::::1;:24;:76;:::i;:::-;25396:337::o:0;24630:93::-;24703:12;;24630:93;:::o;20314:89::-;20357:7;20384:11;-1:-1:-1;;;;;20384:11:0;20314:89;:::o;26737:139::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;26817:1:::1;26224:5;26207:13;;:22;26199:74;;;;-1:-1:-1::0;;;26199:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26300:1;26284:13;:17:::0;26371:14:::1;::::0;26018:5:::1;26371:34;26364:3;:41;;26356:75;;;::::0;;-1:-1:-1;;;26356:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;26356:75:0;;;;;;;;;;;;;::::1;;26850:17:::2;::::0;26831:37:::2;::::0;-1:-1:-1;;;;;26850:17:0::2;26831:18;:37::i;:::-;20616:1:::1;26737:139::o:0;24907:425::-;22754:1;23360:7;;:19;;23352:63;;;;;-1:-1:-1;;;23352:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22754:1;23493:7;:18;24983:10;24975:37:::1;;;::::0;;-1:-1:-1;;;24975:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24975:37:0;;;;;;;;;;;;;::::1;;25037:12;;25031:3;:18;25023:54;;;::::0;;-1:-1:-1;;;25023:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;25103:12;::::0;:24:::1;::::0;25120:6;25103:24:::1;:16;:24;:::i;:::-;25088:12;:39:::0;25164:35:::1;25192:6:::0;25164:9:::1;:23;25174:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;25164:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;25164:23:0;;;:35:::1;:27;:35;:::i;:::-;25138:9;:23;25148:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;25138:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;25138:23:0;:61;25210:65:::1;25239:12;:10;:12::i;:::-;25210:11;::::0;-1:-1:-1;;;;;25210:11:0::1;::::0;25261:4:::1;25268:6:::0;25210:65:::1;:28;:65;:::i;:::-;25303:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;25291:33:0::1;;25317:6;25291:33;;;;;;;;;;;;;;;;;;-1:-1:-1::0;22710:1:0;23672:22;;24907:425::o;26539:186::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;26640:3:::1;26623:14;:20:::0;26670:1:::1;26654:13;:17:::0;26682::::1;:28:::0;;-1:-1:-1;;;;;;26682:28:0::1;-1:-1:-1::0;;;;;26682:28:0;;;::::1;::::0;;;::::1;::::0;;26539:186::o;18858:106::-;18946:10;18858:106;:::o;15163:177::-;15273:58;;;-1:-1:-1;;;;;15273:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;15273:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;15246:86:0;;15266:5;;15246:19;:86::i;:::-;15163:177;;;:::o;20780:263::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20877:22:0;::::1;20869:73;;;;-1:-1:-1::0;;;20869:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20980:11;::::0;;20958:44:::1;::::0;-1:-1:-1;;;;;20958:44:0;;::::1;::::0;20980:11;::::1;::::0;20958:44:::1;::::0;::::1;21013:11;:22:::0;;-1:-1:-1;;;;;;21013:22:0::1;-1:-1:-1::0;;;;;21013:22:0;;;::::1;::::0;;;::::1;::::0;;20780:263::o;3815:181::-;3873:7;3905:5;;;3929:6;;;;3921:46;;;;;-1:-1:-1;;;3921:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3987:1;3815:181;-1:-1:-1;;;3815:181:0:o;15348:205::-;15476:68;;;-1:-1:-1;;;;;15476:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;15476:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;15449:96:0;;15469:5;;15449:19;:96::i;:::-;15348:205;;;;:::o;17468:761::-;17892:23;17918:69;17946:4;17918:69;;;;;;;;;;;;;;;;;17926:5;-1:-1:-1;;;;;17918:27:0;;;:69;;;;;:::i;:::-;18002:17;;17892:95;;-1:-1:-1;18002:21:0;17998:224;;18144:10;18133:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18133:30:0;18125:85;;;;-1:-1:-1;;;18125:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12152:196;12255:12;12287:53;12310:6;12318:4;12324:1;12327:12;12287:22;:53::i;:::-;12280:60;12152:196;-1:-1:-1;;;;12152:196:0:o;13529:979::-;13659:12;13692:18;13703:6;13692:10;:18::i;:::-;13684:60;;;;;-1:-1:-1;;;13684:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13818:12;13832:23;13859:6;-1:-1:-1;;;;;13859:11:0;13879:8;13890:4;13859:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;13859:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;13817:78:0;;;;13910:7;13906:595;;;13941:10;-1:-1:-1;13934:17:0;;-1:-1:-1;13934:17:0;13906:595;14055:17;;:21;14051:439;;14318:10;14312:17;14379:15;14366:10;14362:2;14358:19;14351:44;14266:148;14461:12;14454:20;;-1:-1:-1;;;14454:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14454:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9037:619;9097:4;9565:20;;9408:66;9605:23;;;;;;:42;;-1:-1:-1;;9632:15:0;;;9597:51;-1:-1:-1;;9037:619:0:o
Swarm Source
ipfs://5eafe53b80840bd8f518b511bfaff1d3508a21af143de661aabe253c02497394
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.