ETH Price: $4,481.31 (-4.82%)

Contract

0xA95C5ebB86E0dE73B4fB8c47A45B792CFeA28C23
 

More Info

Private Name Tags

TokenTracker

stake.link (SDL) ($0.6527)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer And Cal...235325292025-10-08 10:46:232 hrs ago1759920383IN
stake.link: SDL Token
0 ETH0.000042070.19620824
Transfer235321912025-10-08 9:37:473 hrs ago1759916267IN
stake.link: SDL Token
0 ETH0.000087171.68954857
Approve235320542025-10-08 9:10:234 hrs ago1759914623IN
stake.link: SDL Token
0 ETH0.000007980.17266527
Transfer And Cal...235307812025-10-08 4:53:598 hrs ago1759899239IN
stake.link: SDL Token
0 ETH0.000306671.10912772
Approve235298172025-10-08 1:39:5911 hrs ago1759887599IN
stake.link: SDL Token
0 ETH0.000076721.64676158
Approve235298142025-10-08 1:39:2311 hrs ago1759887563IN
stake.link: SDL Token
0 ETH0.000011280.24373179
Transfer And Cal...235297602025-10-08 1:28:3512 hrs ago1759886915IN
stake.link: SDL Token
0 ETH0.00007070.25574182
Transfer And Cal...235295812025-10-08 0:52:3512 hrs ago1759884755IN
stake.link: SDL Token
0 ETH0.000326291.61146318
Transfer235293342025-10-08 0:02:4713 hrs ago1759881767IN
stake.link: SDL Token
0 ETH0.000036810.71396227
Transfer And Cal...235282972025-10-07 20:34:4716 hrs ago1759869287IN
stake.link: SDL Token
0 ETH0.000034510.2877257
Approve235278192025-10-07 18:58:4718 hrs ago1759863527IN
stake.link: SDL Token
0 ETH0.000102112.20484336
Transfer And Cal...235258812025-10-07 12:28:5925 hrs ago1759840139IN
stake.link: SDL Token
0 ETH0.00018510.6694367
Transfer235256982025-10-07 11:51:5925 hrs ago1759837919IN
stake.link: SDL Token
0 ETH0.000022140.42922282
Approve235256102025-10-07 11:34:2325 hrs ago1759836863IN
stake.link: SDL Token
0 ETH0.0000591.27437555
Transfer235255982025-10-07 11:31:5925 hrs ago1759836719IN
stake.link: SDL Token
0 ETH0.000065621.27231236
Transfer And Cal...235244732025-10-07 7:46:1129 hrs ago1759823171IN
stake.link: SDL Token
0 ETH0.000313051.13223814
Approve235238132025-10-07 5:32:5931 hrs ago1759815179IN
stake.link: SDL Token
0 ETH0.000051461.1109436
Transfer And Cal...235225722025-10-07 1:22:3536 hrs ago1759800155IN
stake.link: SDL Token
0 ETH0.000004630.18227078
Transfer And Cal...235225712025-10-07 1:22:2336 hrs ago1759800143IN
stake.link: SDL Token
0 ETH0.000041320.17458504
Approve235206382025-10-06 18:53:2342 hrs ago1759776803IN
stake.link: SDL Token
0 ETH0.000098552.11532213
Transfer And Cal...235145252025-10-05 22:22:232 days ago1759702943IN
stake.link: SDL Token
0 ETH0.00003010.11326232
Approve235139652025-10-05 20:29:472 days ago1759696187IN
stake.link: SDL Token
0 ETH0.000004120.17020784
Transfer And Cal...235128972025-10-05 16:55:232 days ago1759683323IN
stake.link: SDL Token
0 ETH0.000294931.18593663
Transfer And Cal...235125612025-10-05 15:47:472 days ago1759679267IN
stake.link: SDL Token
0 ETH0.000034720.13964955
Transfer And Cal...235123122025-10-05 14:57:352 days ago1759676255IN
stake.link: SDL Token
0 ETH0.00001590.1325687
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StakingAllowance

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-12-05
*/

// Sources flattened with hardhat v2.11.2 https://hardhat.org

// File contracts/core/interfaces/IERC677Receiver.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

interface IERC677Receiver {
    function onTokenTransfer(
        address _sender,
        uint256 _value,
        bytes calldata _data
    ) external;
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @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 {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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 {IERC20-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) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/core/tokens/base/ERC677.sol


pragma solidity 0.8.15;

contract ERC677 is ERC20 {
    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        uint256 _totalSupply
    ) ERC20(_tokenName, _tokenSymbol) {
        _mint(msg.sender, _totalSupply * (10**uint256(decimals())));
    }

    function transferAndCall(
        address _to,
        uint256 _value,
        bytes memory _data
    ) public returns (bool) {
        super.transfer(_to, _value);
        if (isContract(_to)) {
            contractFallback(msg.sender, _to, _value, _data);
        }
        return true;
    }

    function transferAndCallFrom(
        address _sender,
        address _to,
        uint256 _value,
        bytes memory _data
    ) internal returns (bool) {
        _transfer(_sender, _to, _value);
        if (isContract(_to)) {
            contractFallback(_sender, _to, _value, _data);
        }
        return true;
    }

    function contractFallback(
        address _sender,
        address _to,
        uint256 _value,
        bytes memory _data
    ) internal {
        IERC677Receiver receiver = IERC677Receiver(_to);
        receiver.onTokenTransfer(_sender, _value, _data);
    }

    function isContract(address _addr) internal view returns (bool hasCode) {
        uint256 length;
        assembly {
            length := extcodesize(_addr)
        }
        return length > 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.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.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/core/tokens/StakingAllowance.sol


pragma solidity 0.8.15;

/**
 * @title Allowance token for staking fair-access
 * @notice Allows for an elastic supply where allowance is calculated by balance & supply
 */
contract StakingAllowance is ERC677, Ownable {
    constructor(string memory _name, string memory _symbol) ERC677(_name, _symbol, 0) {}

    /**
     * @dev Mints a given amount of tokens to an account
     * @param _account address to mint to
     * @param _amount amount of tokens to mint
     **/
    function mint(address _account, uint256 _amount) public onlyOwner {
        _mint(_account, _amount);
    }

    /**
     * @dev Mints a given amount of tokens to a contract on behalf of an account via ERC677
     * @param _contract contract to send tokens to
     * @param _account address to mint to
     * @param _amount amount of tokens to mint
     **/
    function mintToContract(
        address _contract,
        address _account,
        uint256 _amount,
        bytes calldata _calldata
    ) public onlyOwner {
        _mint(msg.sender, _amount);
        transferAndCallWithSender(_account, _contract, _amount, _calldata);
    }

    /**
     * @dev Burns a given amount of tokens from the sender
     * @param _amount amount of tokens to burn
     **/
    function burn(uint256 _amount) public {
        _burn(msg.sender, _amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     */
    function burnFrom(address account, uint256 amount) public {
        _spendAllowance(account, msg.sender, amount);
        _burn(account, amount);
    }

    /**
     * @dev re-implementation of ERC677 transferAndCall but with the ability to specify a custom sender,
     * needed as the allowance mint needs to be minted on behalf of an address and send to a contract fallback.
     * @param _sender the specified sender of the tokens, the party who 'receives' them into a contract
     * @param _to the contract to send the minted tokens to
     * @param _value the token amount
     * @param _data the calldata included in the transfer
     */
    function transferAndCallWithSender(
        address _sender,
        address _to,
        uint256 _value,
        bytes calldata _data
    ) private returns (bool) {
        require(isContract(_to), "to address has to be a contract");
        super.transfer(_to, _value);
        contractFallback(_sender, _to, _value, _data);
        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_calldata","type":"bytes"}],"name":"mintToContract","outputs":[],"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":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001679380380620016798339810160408190526200003491620002cb565b8181600082826003620000488382620003c3565b506004620000578282620003c3565b50505062000091336200006f620000b660201b60201c565b6200007f9060ff16600a620005a4565b6200008b9084620005b9565b620000bb565b505050620000ae620000a8620001a360201b60201c565b620001a7565b5050620005f6565b601290565b6001600160a01b038216620001165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200012a9190620005db565b90915550506001600160a01b0382166000908152602081905260408120805483929062000159908490620005db565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022657600080fd5b81516001600160401b0380821115620002435762000243620001fe565b604051601f8301601f19908116603f011681019082821181831017156200026e576200026e620001fe565b816040528381526020925086838588010111156200028b57600080fd5b600091505b83821015620002af578582018301518183018401529082019062000290565b83821115620002c15760008385830101525b9695505050505050565b60008060408385031215620002df57600080fd5b82516001600160401b0380821115620002f757600080fd5b620003058683870162000214565b935060208501519150808211156200031c57600080fd5b506200032b8582860162000214565b9150509250929050565b600181811c908216806200034a57607f821691505b6020821081036200036b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f957600081815260208120601f850160051c810160208610156200039a5750805b601f850160051c820191505b81811015620003bb57828155600101620003a6565b505050505050565b81516001600160401b03811115620003df57620003df620001fe565b620003f781620003f0845462000335565b8462000371565b602080601f8311600181146200042f5760008415620004165750858301515b600019600386901b1c1916600185901b178555620003bb565b600085815260208120601f198616915b8281101562000460578886015182559484019460019091019084016200043f565b50858210156200047f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e6578160001904821115620004ca57620004ca6200048f565b80851615620004d857918102915b93841c9390800290620004aa565b509250929050565b600082620004ff575060016200059e565b816200050e575060006200059e565b8160018114620005275760028114620005325762000552565b60019150506200059e565b60ff8411156200054657620005466200048f565b50506001821b6200059e565b5060208310610133831016604e8410600b841016171562000577575081810a6200059e565b620005838383620004a5565b80600019048211156200059a576200059a6200048f565b0290505b92915050565b6000620005b28383620004ee565b9392505050565b6000816000190483118215151615620005d657620005d66200048f565b500290565b60008219821115620005f157620005f16200048f565b500190565b61107380620006066000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610250578063a9059cbb14610263578063dd62ed3e14610276578063f08a798014610289578063f2fde38b1461029c57600080fd5b806370a08231146101e9578063715018a61461021257806379cc67901461021a5780638da5cb5b1461022d57806395d89b411461024857600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780634000aea0146101ae57806340c10f19146101c157806342966c68146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102af565b60405161013b9190610d0f565b60405180910390f35b610157610152366004610d45565b610341565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d6f565b610359565b6040516012815260200161013b565b6101576101a9366004610d45565b61037d565b6101576101bc366004610dc1565b61039f565b6101d46101cf366004610d45565b6103bf565b005b6101d46101e4366004610e8c565b6103d5565b61016b6101f7366004610ea5565b6001600160a01b031660009081526020819052604090205490565b6101d46103e2565b6101d4610228366004610d45565b6103f6565b6005546040516001600160a01b03909116815260200161013b565b61012e61040b565b61015761025e366004610d45565b61041a565b610157610271366004610d45565b61049a565b61016b610284366004610ec0565b6104a8565b6101d4610297366004610ef3565b6104d3565b6101d46102aa366004610ea5565b6104fa565b6060600380546102be90610f8e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610f8e565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b5050505050905090565b60003361034f818585610570565b5060019392505050565b600033610367858285610695565b61037285858561070f565b506001949350505050565b60003361034f81858561039083836104a8565b61039a9190610fde565b610570565b60006103ab848461049a565b50833b1561034f5761034f338585856108dd565b6103c7610948565b6103d182826109a2565b5050565b6103df3382610a81565b50565b6103ea610948565b6103f46000610bc7565b565b610401823383610695565b6103d18282610a81565b6060600480546102be90610f8e565b6000338161042882866104a8565b90508381101561048d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103728286868403610570565b60003361034f81858561070f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104db610948565b6104e533846109a2565b6104f28486858585610c19565b505050505050565b610502610948565b6001600160a01b0381166105675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610484565b6103df81610bc7565b6001600160a01b0383166105d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610484565b6001600160a01b0382166106335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610484565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106a184846104a8565b9050600019811461070957818110156106fc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610484565b6107098484848403610570565b50505050565b6001600160a01b0383166107735760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610484565b6001600160a01b0382166107d55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610484565b6001600160a01b0383166000908152602081905260409020548181101561084d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610484565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610884908490610fde565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d091815260200190565b60405180910390a3610709565b604051635260769b60e11b815283906001600160a01b0382169063a4c0ed369061090f90889087908790600401610ff6565b600060405180830381600087803b15801561092957600080fd5b505af115801561093d573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146103f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610484565b6001600160a01b0382166109f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610484565b8060026000828254610a0a9190610fde565b90915550506001600160a01b03821660009081526020819052604081208054839290610a37908490610fde565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ae15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610484565b6001600160a01b03821660009081526020819052604090205481811015610b555760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610484565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b84908490611026565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610688565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000843b610c695760405162461bcd60e51b815260206004820152601f60248201527f746f20616464726573732068617320746f206265206120636f6e7472616374006044820152606401610484565b610c73858561049a565b50610cb686868686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506108dd92505050565b50600195945050505050565b6000815180845260005b81811015610ce857602081850181015186830182015201610ccc565b81811115610cfa576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610d226020830184610cc2565b9392505050565b80356001600160a01b0381168114610d4057600080fd5b919050565b60008060408385031215610d5857600080fd5b610d6183610d29565b946020939093013593505050565b600080600060608486031215610d8457600080fd5b610d8d84610d29565b9250610d9b60208501610d29565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610dd657600080fd5b610ddf84610d29565b925060208401359150604084013567ffffffffffffffff80821115610e0357600080fd5b818601915086601f830112610e1757600080fd5b813581811115610e2957610e29610dab565b604051601f8201601f19908116603f01168101908382118183101715610e5157610e51610dab565b81604052828152896020848701011115610e6a57600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b600060208284031215610e9e57600080fd5b5035919050565b600060208284031215610eb757600080fd5b610d2282610d29565b60008060408385031215610ed357600080fd5b610edc83610d29565b9150610eea60208401610d29565b90509250929050565b600080600080600060808688031215610f0b57600080fd5b610f1486610d29565b9450610f2260208701610d29565b935060408601359250606086013567ffffffffffffffff80821115610f4657600080fd5b818801915088601f830112610f5a57600080fd5b813581811115610f6957600080fd5b896020828501011115610f7b57600080fd5b9699959850939650602001949392505050565b600181811c90821680610fa257607f821691505b602082108103610fc257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610ff157610ff1610fc8565b500190565b60018060a01b038416815282602082015260606040820152600061101d6060830184610cc2565b95945050505050565b60008282101561103857611038610fc8565b50039056fea2646970667358221220553a34f28e239f10d051586fd4f3ce01e8650e4823e6612d7501502d5545a85a64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a7374616b652e6c696e6b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353444c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610250578063a9059cbb14610263578063dd62ed3e14610276578063f08a798014610289578063f2fde38b1461029c57600080fd5b806370a08231146101e9578063715018a61461021257806379cc67901461021a5780638da5cb5b1461022d57806395d89b411461024857600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780634000aea0146101ae57806340c10f19146101c157806342966c68146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102af565b60405161013b9190610d0f565b60405180910390f35b610157610152366004610d45565b610341565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d6f565b610359565b6040516012815260200161013b565b6101576101a9366004610d45565b61037d565b6101576101bc366004610dc1565b61039f565b6101d46101cf366004610d45565b6103bf565b005b6101d46101e4366004610e8c565b6103d5565b61016b6101f7366004610ea5565b6001600160a01b031660009081526020819052604090205490565b6101d46103e2565b6101d4610228366004610d45565b6103f6565b6005546040516001600160a01b03909116815260200161013b565b61012e61040b565b61015761025e366004610d45565b61041a565b610157610271366004610d45565b61049a565b61016b610284366004610ec0565b6104a8565b6101d4610297366004610ef3565b6104d3565b6101d46102aa366004610ea5565b6104fa565b6060600380546102be90610f8e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610f8e565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b5050505050905090565b60003361034f818585610570565b5060019392505050565b600033610367858285610695565b61037285858561070f565b506001949350505050565b60003361034f81858561039083836104a8565b61039a9190610fde565b610570565b60006103ab848461049a565b50833b1561034f5761034f338585856108dd565b6103c7610948565b6103d182826109a2565b5050565b6103df3382610a81565b50565b6103ea610948565b6103f46000610bc7565b565b610401823383610695565b6103d18282610a81565b6060600480546102be90610f8e565b6000338161042882866104a8565b90508381101561048d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103728286868403610570565b60003361034f81858561070f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104db610948565b6104e533846109a2565b6104f28486858585610c19565b505050505050565b610502610948565b6001600160a01b0381166105675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610484565b6103df81610bc7565b6001600160a01b0383166105d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610484565b6001600160a01b0382166106335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610484565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106a184846104a8565b9050600019811461070957818110156106fc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610484565b6107098484848403610570565b50505050565b6001600160a01b0383166107735760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610484565b6001600160a01b0382166107d55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610484565b6001600160a01b0383166000908152602081905260409020548181101561084d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610484565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610884908490610fde565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d091815260200190565b60405180910390a3610709565b604051635260769b60e11b815283906001600160a01b0382169063a4c0ed369061090f90889087908790600401610ff6565b600060405180830381600087803b15801561092957600080fd5b505af115801561093d573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146103f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610484565b6001600160a01b0382166109f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610484565b8060026000828254610a0a9190610fde565b90915550506001600160a01b03821660009081526020819052604081208054839290610a37908490610fde565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ae15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610484565b6001600160a01b03821660009081526020819052604090205481811015610b555760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610484565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b84908490611026565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610688565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000843b610c695760405162461bcd60e51b815260206004820152601f60248201527f746f20616464726573732068617320746f206265206120636f6e7472616374006044820152606401610484565b610c73858561049a565b50610cb686868686868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506108dd92505050565b50600195945050505050565b6000815180845260005b81811015610ce857602081850181015186830182015201610ccc565b81811115610cfa576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610d226020830184610cc2565b9392505050565b80356001600160a01b0381168114610d4057600080fd5b919050565b60008060408385031215610d5857600080fd5b610d6183610d29565b946020939093013593505050565b600080600060608486031215610d8457600080fd5b610d8d84610d29565b9250610d9b60208501610d29565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610dd657600080fd5b610ddf84610d29565b925060208401359150604084013567ffffffffffffffff80821115610e0357600080fd5b818601915086601f830112610e1757600080fd5b813581811115610e2957610e29610dab565b604051601f8201601f19908116603f01168101908382118183101715610e5157610e51610dab565b81604052828152896020848701011115610e6a57600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b600060208284031215610e9e57600080fd5b5035919050565b600060208284031215610eb757600080fd5b610d2282610d29565b60008060408385031215610ed357600080fd5b610edc83610d29565b9150610eea60208401610d29565b90509250929050565b600080600080600060808688031215610f0b57600080fd5b610f1486610d29565b9450610f2260208701610d29565b935060408601359250606086013567ffffffffffffffff80821115610f4657600080fd5b818801915088601f830112610f5a57600080fd5b813581811115610f6957600080fd5b896020828501011115610f7b57600080fd5b9699959850939650602001949392505050565b600181811c90821680610fa257607f821691505b602082108103610fc257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610ff157610ff1610fc8565b500190565b60018060a01b038416815282602082015260606040820152600061101d6060830184610cc2565b95945050505050565b60008282101561103857611038610fc8565b50039056fea2646970667358221220553a34f28e239f10d051586fd4f3ce01e8650e4823e6612d7501502d5545a85a64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a7374616b652e6c696e6b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353444c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): stake.link
Arg [1] : _symbol (string): SDL

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 7374616b652e6c696e6b00000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 53444c0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22254:2344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7026:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9377:201;;;;;;:::i;:::-;;:::i;:::-;;;1318:14:1;;1311:22;1293:41;;1281:2;1266:18;9377:201:0;1153:187:1;8146:108:0;8234:12;;8146:108;;;1491:25:1;;;1479:2;1464:18;8146:108:0;1345:177:1;10158:295:0;;;;;;:::i;:::-;;:::i;7988:93::-;;;8071:2;2002:36:1;;1990:2;1975:18;7988:93:0;1860:184:1;10862:238:0;;;;;;:::i;:::-;;:::i;18164:304::-;;;;;;:::i;:::-;;:::i;22566:109::-;;;;;;:::i;:::-;;:::i;:::-;;23359:83;;;;;;:::i;:::-;;:::i;8317:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8418:18:0;8391:7;8418:18;;;;;;;;;;;;8317:127;21200:103;;;:::i;23569:154::-;;;;;;:::i;:::-;;:::i;20552:87::-;20625:6;;20552:87;;-1:-1:-1;;;;;20625:6:0;;;3771:51:1;;3759:2;3744:18;20552:87:0;3625:203:1;7245:104:0;;;:::i;11603:436::-;;;;;;:::i;:::-;;:::i;8650:193::-;;;;;;:::i;:::-;;:::i;8906:151::-;;;;;;:::i;:::-;;:::i;22938:286::-;;;;;;:::i;:::-;;:::i;21458:201::-;;;;;;:::i;:::-;;:::i;7026:100::-;7080:13;7113:5;7106:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7026:100;:::o;9377:201::-;9460:4;4740:10;9516:32;4740:10;9532:7;9541:6;9516:8;:32::i;:::-;-1:-1:-1;9566:4:0;;9377:201;-1:-1:-1;;;9377:201:0:o;10158:295::-;10289:4;4740:10;10347:38;10363:4;4740:10;10378:6;10347:15;:38::i;:::-;10396:27;10406:4;10412:2;10416:6;10396:9;:27::i;:::-;-1:-1:-1;10441:4:0;;10158:295;-1:-1:-1;;;;10158:295:0:o;10862:238::-;10950:4;4740:10;11006:64;4740:10;11022:7;11059:10;11031:25;4740:10;11022:7;11031:9;:25::i;:::-;:38;;;;:::i;:::-;11006:8;:64::i;18164:304::-;18288:4;18305:27;18320:3;18325:6;18305:14;:27::i;:::-;-1:-1:-1;19240:18:0;;19286:10;18343:96;;18379:48;18396:10;18408:3;18413:6;18421:5;18379:16;:48::i;22566:109::-;20438:13;:11;:13::i;:::-;22643:24:::1;22649:8;22659:7;22643:5;:24::i;:::-;22566:109:::0;;:::o;23359:83::-;23408:26;23414:10;23426:7;23408:5;:26::i;:::-;23359:83;:::o;21200:103::-;20438:13;:11;:13::i;:::-;21265:30:::1;21292:1;21265:18;:30::i;:::-;21200:103::o:0;23569:154::-;23638:44;23654:7;23663:10;23675:6;23638:15;:44::i;:::-;23693:22;23699:7;23708:6;23693:5;:22::i;7245:104::-;7301:13;7334:7;7327:14;;;;;:::i;11603:436::-;11696:4;4740:10;11696:4;11779:25;4740:10;11796:7;11779:9;:25::i;:::-;11752:52;;11843:15;11823:16;:35;;11815:85;;;;-1:-1:-1;;;11815:85:0;;5763:2:1;11815:85:0;;;5745:21:1;5802:2;5782:18;;;5775:30;5841:34;5821:18;;;5814:62;-1:-1:-1;;;5892:18:1;;;5885:35;5937:19;;11815:85:0;;;;;;;;;11936:60;11945:5;11952:7;11980:15;11961:16;:34;11936:8;:60::i;8650:193::-;8729:4;4740:10;8785:28;4740:10;8802:2;8806:6;8785:9;:28::i;8906:151::-;-1:-1:-1;;;;;9022:18:0;;;8995:7;9022:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8906:151::o;22938:286::-;20438:13;:11;:13::i;:::-;23113:26:::1;23119:10;23131:7;23113:5;:26::i;:::-;23150:66;23176:8;23186:9;23197:7;23206:9;;23150:25;:66::i;:::-;;22938:286:::0;;;;;:::o;21458:201::-;20438:13;:11;:13::i;:::-;-1:-1:-1;;;;;21547:22:0;::::1;21539:73;;;::::0;-1:-1:-1;;;21539:73:0;;6169:2:1;21539:73:0::1;::::0;::::1;6151:21:1::0;6208:2;6188:18;;;6181:30;6247:34;6227:18;;;6220:62;-1:-1:-1;;;6298:18:1;;;6291:36;6344:19;;21539:73:0::1;5967:402:1::0;21539:73:0::1;21623:28;21642:8;21623:18;:28::i;15228:380::-:0;-1:-1:-1;;;;;15364:19:0;;15356:68;;;;-1:-1:-1;;;15356:68:0;;6576:2:1;15356:68:0;;;6558:21:1;6615:2;6595:18;;;6588:30;6654:34;6634:18;;;6627:62;-1:-1:-1;;;6705:18:1;;;6698:34;6749:19;;15356:68:0;6374:400:1;15356:68:0;-1:-1:-1;;;;;15443:21:0;;15435:68;;;;-1:-1:-1;;;15435:68:0;;6981:2:1;15435:68:0;;;6963:21:1;7020:2;7000:18;;;6993:30;7059:34;7039:18;;;7032:62;-1:-1:-1;;;7110:18:1;;;7103:32;7152:19;;15435:68:0;6779:398:1;15435:68:0;-1:-1:-1;;;;;15516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15568:32;;1491:25:1;;;15568:32:0;;1464:18:1;15568:32:0;;;;;;;;15228:380;;;:::o;15899:453::-;16034:24;16061:25;16071:5;16078:7;16061:9;:25::i;:::-;16034:52;;-1:-1:-1;;16101:16:0;:37;16097:248;;16183:6;16163:16;:26;;16155:68;;;;-1:-1:-1;;;16155:68:0;;7384:2:1;16155:68:0;;;7366:21:1;7423:2;7403:18;;;7396:30;7462:31;7442:18;;;7435:59;7511:18;;16155:68:0;7182:353:1;16155:68:0;16267:51;16276:5;16283:7;16311:6;16292:16;:25;16267:8;:51::i;:::-;16023:329;15899:453;;;:::o;12509:671::-;-1:-1:-1;;;;;12640:18:0;;12632:68;;;;-1:-1:-1;;;12632:68:0;;7742:2:1;12632:68:0;;;7724:21:1;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:35;7916:19;;12632:68:0;7540:401:1;12632:68:0;-1:-1:-1;;;;;12719:16:0;;12711:64;;;;-1:-1:-1;;;12711:64:0;;8148:2:1;12711:64:0;;;8130:21:1;8187:2;8167:18;;;8160:30;8226:34;8206:18;;;8199:62;-1:-1:-1;;;8277:18:1;;;8270:33;8320:19;;12711:64:0;7946:399:1;12711:64:0;-1:-1:-1;;;;;12861:15:0;;12839:19;12861:15;;;;;;;;;;;12895:21;;;;12887:72;;;;-1:-1:-1;;;12887:72:0;;8552:2:1;12887:72:0;;;8534:21:1;8591:2;8571:18;;;8564:30;8630:34;8610:18;;;8603:62;-1:-1:-1;;;8681:18:1;;;8674:36;8727:19;;12887:72:0;8350:402:1;12887:72:0;-1:-1:-1;;;;;12995:15:0;;;:9;:15;;;;;;;;;;;13013:20;;;12995:38;;13055:13;;;;;;;;:23;;13027:6;;12995:9;13055:23;;13027:6;;13055:23;:::i;:::-;;;;;;;;13111:2;-1:-1:-1;;;;;13096:26:0;13105:4;-1:-1:-1;;;;;13096:26:0;;13115:6;13096:26;;;;1491:25:1;;1479:2;1464:18;;1345:177;13096:26:0;;;;;;;;13135:37;14199:591;18821:269;19034:48;;-1:-1:-1;;;19034:48:0;;19019:3;;-1:-1:-1;;;;;19034:24:0;;;;;:48;;19059:7;;19068:6;;19076:5;;19034:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18965:125;18821:269;;;;:::o;20717:132::-;20625:6;;-1:-1:-1;;;;;20625:6:0;4740:10;20781:23;20773:68;;;;-1:-1:-1;;;20773:68:0;;9350:2:1;20773:68:0;;;9332:21:1;;;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;9480:18;;20773:68:0;9148:356:1;13467:399:0;-1:-1:-1;;;;;13551:21:0;;13543:65;;;;-1:-1:-1;;;13543:65:0;;9711:2:1;13543:65:0;;;9693:21:1;9750:2;9730:18;;;9723:30;9789:33;9769:18;;;9762:61;9840:18;;13543:65:0;9509:355:1;13543:65:0;13699:6;13683:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13716:18:0;;:9;:18;;;;;;;;;;:28;;13738:6;;13716:9;:28;;13738:6;;13716:28;:::i;:::-;;;;-1:-1:-1;;13760:37:0;;1491:25:1;;;-1:-1:-1;;;;;13760:37:0;;;13777:1;;13760:37;;1479:2:1;1464:18;13760:37:0;;;;;;;22566:109;;:::o;14199:591::-;-1:-1:-1;;;;;14283:21:0;;14275:67;;;;-1:-1:-1;;;14275:67:0;;10071:2:1;14275:67:0;;;10053:21:1;10110:2;10090:18;;;10083:30;10149:34;10129:18;;;10122:62;-1:-1:-1;;;10200:18:1;;;10193:31;10241:19;;14275:67:0;9869:397:1;14275:67:0;-1:-1:-1;;;;;14442:18:0;;14417:22;14442:18;;;;;;;;;;;14479:24;;;;14471:71;;;;-1:-1:-1;;;14471:71:0;;10473:2:1;14471:71:0;;;10455:21:1;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:32;10644:19;;14471:71:0;10271:398:1;14471:71:0;-1:-1:-1;;;;;14578:18:0;;:9;:18;;;;;;;;;;14599:23;;;14578:44;;14644:12;:22;;14616:6;;14578:9;14644:22;;14616:6;;14644:22;:::i;:::-;;;;-1:-1:-1;;14684:37:0;;1491:25:1;;;14710:1:0;;-1:-1:-1;;;;;14684:37:0;;;;;1479:2:1;1464:18;14684:37:0;1345:177:1;21819:191:0;21912:6;;;-1:-1:-1;;;;;21929:17:0;;;-1:-1:-1;;;;;;21929:17:0;;;;;;;21962:40;;21912:6;;;21929:17;21912:6;;21962:40;;21893:16;;21962:40;21882:128;21819:191;:::o;24232:363::-;24395:4;19240:18;;24412:59;;;;-1:-1:-1;;;24412:59:0;;11006:2:1;24412:59:0;;;10988:21:1;11045:2;11025:18;;;11018:30;11084:33;11064:18;;;11057:61;11135:18;;24412:59:0;10804:355:1;24412:59:0;24482:27;24497:3;24502:6;24482:14;:27::i;:::-;;24520:45;24537:7;24546:3;24551:6;24559:5;;24520:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24520:16:0;;-1:-1:-1;;;24520:45:0:i;:::-;-1:-1:-1;24583:4:0;24232:363;;;;;;;:::o;14:472:1:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;336:6;333:1;330:13;327:87;;;402:1;395:4;386:6;381:3;377:16;373:27;366:38;327:87;-1:-1:-1;468:2:1;447:15;-1:-1:-1;;443:29:1;434:39;;;;475:4;430:50;;14:472;-1:-1:-1;;14:472:1:o;491:220::-;640:2;629:9;622:21;603:4;660:45;701:2;690:9;686:18;678:6;660:45;:::i;:::-;652:53;491:220;-1:-1:-1;;;491:220:1:o;716:173::-;784:20;;-1:-1:-1;;;;;833:31:1;;823:42;;813:70;;879:1;876;869:12;813:70;716:173;;;:::o;894:254::-;962:6;970;1023:2;1011:9;1002:7;998:23;994:32;991:52;;;1039:1;1036;1029:12;991:52;1062:29;1081:9;1062:29;:::i;:::-;1052:39;1138:2;1123:18;;;;1110:32;;-1:-1:-1;;;894:254:1:o;1527:328::-;1604:6;1612;1620;1673:2;1661:9;1652:7;1648:23;1644:32;1641:52;;;1689:1;1686;1679:12;1641:52;1712:29;1731:9;1712:29;:::i;:::-;1702:39;;1760:38;1794:2;1783:9;1779:18;1760:38;:::i;:::-;1750:48;;1845:2;1834:9;1830:18;1817:32;1807:42;;1527:328;;;;;:::o;2049:127::-;2110:10;2105:3;2101:20;2098:1;2091:31;2141:4;2138:1;2131:15;2165:4;2162:1;2155:15;2181:1063;2267:6;2275;2283;2336:2;2324:9;2315:7;2311:23;2307:32;2304:52;;;2352:1;2349;2342:12;2304:52;2375:29;2394:9;2375:29;:::i;:::-;2365:39;;2451:2;2440:9;2436:18;2423:32;2413:42;;2506:2;2495:9;2491:18;2478:32;2529:18;2570:2;2562:6;2559:14;2556:34;;;2586:1;2583;2576:12;2556:34;2624:6;2613:9;2609:22;2599:32;;2669:7;2662:4;2658:2;2654:13;2650:27;2640:55;;2691:1;2688;2681:12;2640:55;2727:2;2714:16;2749:2;2745;2742:10;2739:36;;;2755:18;;:::i;:::-;2830:2;2824:9;2798:2;2884:13;;-1:-1:-1;;2880:22:1;;;2904:2;2876:31;2872:40;2860:53;;;2928:18;;;2948:22;;;2925:46;2922:72;;;2974:18;;:::i;:::-;3014:10;3010:2;3003:22;3049:2;3041:6;3034:18;3089:7;3084:2;3079;3075;3071:11;3067:20;3064:33;3061:53;;;3110:1;3107;3100:12;3061:53;3166:2;3161;3157;3153:11;3148:2;3140:6;3136:15;3123:46;3211:1;3206:2;3201;3193:6;3189:15;3185:24;3178:35;3232:6;3222:16;;;;;;;2181:1063;;;;;:::o;3249:180::-;3308:6;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;-1:-1:-1;3400:23:1;;3249:180;-1:-1:-1;3249:180:1:o;3434:186::-;3493:6;3546:2;3534:9;3525:7;3521:23;3517:32;3514:52;;;3562:1;3559;3552:12;3514:52;3585:29;3604:9;3585:29;:::i;3833:260::-;3901:6;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4001:29;4020:9;4001:29;:::i;:::-;3991:39;;4049:38;4083:2;4072:9;4068:18;4049:38;:::i;:::-;4039:48;;3833:260;;;;;:::o;4098:808::-;4195:6;4203;4211;4219;4227;4280:3;4268:9;4259:7;4255:23;4251:33;4248:53;;;4297:1;4294;4287:12;4248:53;4320:29;4339:9;4320:29;:::i;:::-;4310:39;;4368:38;4402:2;4391:9;4387:18;4368:38;:::i;:::-;4358:48;;4453:2;4442:9;4438:18;4425:32;4415:42;;4508:2;4497:9;4493:18;4480:32;4531:18;4572:2;4564:6;4561:14;4558:34;;;4588:1;4585;4578:12;4558:34;4626:6;4615:9;4611:22;4601:32;;4671:7;4664:4;4660:2;4656:13;4652:27;4642:55;;4693:1;4690;4683:12;4642:55;4733:2;4720:16;4759:2;4751:6;4748:14;4745:34;;;4775:1;4772;4765:12;4745:34;4820:7;4815:2;4806:6;4802:2;4798:15;4794:24;4791:37;4788:57;;;4841:1;4838;4831:12;4788:57;4098:808;;;;-1:-1:-1;4098:808:1;;-1:-1:-1;4872:2:1;4864:11;;4894:6;4098:808;-1:-1:-1;;;4098:808:1:o;4911:380::-;4990:1;4986:12;;;;5033;;;5054:61;;5108:4;5100:6;5096:17;5086:27;;5054:61;5161:2;5153:6;5150:14;5130:18;5127:38;5124:161;;5207:10;5202:3;5198:20;5195:1;5188:31;5242:4;5239:1;5232:15;5270:4;5267:1;5260:15;5124:161;;4911:380;;;:::o;5296:127::-;5357:10;5352:3;5348:20;5345:1;5338:31;5388:4;5385:1;5378:15;5412:4;5409:1;5402:15;5428:128;5468:3;5499:1;5495:6;5492:1;5489:13;5486:39;;;5505:18;;:::i;:::-;-1:-1:-1;5541:9:1;;5428:128::o;8757:386::-;8989:1;8985;8980:3;8976:11;8972:19;8964:6;8960:32;8949:9;8942:51;9029:6;9024:2;9013:9;9009:18;9002:34;9072:2;9067;9056:9;9052:18;9045:30;8923:4;9092:45;9133:2;9122:9;9118:18;9110:6;9092:45;:::i;:::-;9084:53;8757:386;-1:-1:-1;;;;;8757:386:1:o;10674:125::-;10714:4;10742:1;10739;10736:8;10733:34;;;10747:18;;:::i;:::-;-1:-1:-1;10784:9:1;;10674:125::o

Swarm Source

ipfs://553a34f28e239f10d051586fd4f3ce01e8650e4823e6612d7501502d5545a85a

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

OVERVIEW

stake.link is a liquid staking protocol built on top of Chainlink Economics 2.0. Our mission is to increase network security and participation.

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.