BERA Price: $3.72 (+1.02%)

Contract

0x42cF42e55c89C6389FbbBA27dAeD4E6d2908ECF9

Overview

BERA Balance

Berachain LogoBerachain LogoBerachain Logo0 BERA

BERA Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer39080242025-04-19 11:00:144 days ago1745060414IN
0x42cF42e5...d2908ECF9
0 BERA0.000027071.00047042
Transfer39079932025-04-19 10:59:144 days ago1745060354IN
0x42cF42e5...d2908ECF9
0 BERA0.000000040.00172826
Transfer39079672025-04-19 10:58:224 days ago1745060302IN
0x42cF42e5...d2908ECF9
0 BERA0.000000010.00052476
Transfer37041972025-04-14 19:06:198 days ago1744657579IN
0x42cF42e5...d2908ECF9
0 BERA00.00000081
Transfer37041352025-04-14 19:04:188 days ago1744657458IN
0x42cF42e5...d2908ECF9
0 BERA00.0000011
Transfer36753732025-04-14 3:11:149 days ago1744600274IN
0x42cF42e5...d2908ECF9
0 BERA00.00000015
Transfer36751762025-04-14 3:04:409 days ago1744599880IN
0x42cF42e5...d2908ECF9
0 BERA00.00000023
Approve36113202025-04-12 16:03:5510 days ago1744473835IN
0x42cF42e5...d2908ECF9
0 BERA0.000000040.00100519
Approve33093402025-04-05 18:22:4617 days ago1743877366IN
0x42cF42e5...d2908ECF9
0 BERA0.000000110.002361
Transfer32480422025-04-04 9:22:4119 days ago1743758561IN
0x42cF42e5...d2908ECF9
0 BERA0.000000220.008305
Transfer30881022025-03-31 18:22:5522 days ago1743445375IN
0x42cF42e5...d2908ECF9
0 BERA0.000000070.002878
Transfer30855772025-03-31 17:00:3422 days ago1743440434IN
0x42cF42e5...d2908ECF9
0 BERA0.000000270.00999382
Transfer30855192025-03-31 16:58:4022 days ago1743440320IN
0x42cF42e5...d2908ECF9
0 BERA0.000000310.01153984
Transfer30835072025-03-31 15:53:0822 days ago1743436388IN
0x42cF42e5...d2908ECF9
0 BERA0.000010630.39321896
Approve28278662025-03-25 20:26:0828 days ago1742934368IN
0x42cF42e5...d2908ECF9
0 BERA00.00016567
Transfer28273262025-03-25 20:08:4928 days ago1742933329IN
0x42cF42e5...d2908ECF9
0 BERA0.000000020.000973
Approve28175762025-03-25 14:53:0628 days ago1742914386IN
0x42cF42e5...d2908ECF9
0 BERA0.000000090.00197723
Approve28157982025-03-25 13:55:1028 days ago1742910910IN
0x42cF42e5...d2908ECF9
0 BERA0.000000020.00094199
Approve28157842025-03-25 13:54:4328 days ago1742910883IN
0x42cF42e5...d2908ECF9
0 BERA0.000000040.00095345
Approve28153452025-03-25 13:40:2928 days ago1742910029IN
0x42cF42e5...d2908ECF9
0 BERA0.000000040.00097093
Approve27263062025-03-23 12:26:1231 days ago1742732772IN
0x42cF42e5...d2908ECF9
0 BERA00.00000058
Transfer26489322025-03-21 18:11:4832 days ago1742580708IN
0x42cF42e5...d2908ECF9
0 BERA0.000000010.00023631
Approve23324072025-03-14 14:54:2939 days ago1741964069IN
0x42cF42e5...d2908ECF9
0 BERA00.00000009
Approve20359542025-03-07 18:35:0646 days ago1741372506IN
0x42cF42e5...d2908ECF9
0 BERA00.00000001
Transfer20304462025-03-07 15:39:1846 days ago1741361958IN
0x42cF42e5...d2908ECF9
0 BERA00.0000001
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PointsToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
cancun EvmVersion
File 1 of 6 : PointsToken.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.26;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IMetaBeraborrowCore} from "src/interfaces/core/IMetaBeraborrowCore.sol";

contract PointsToken is ERC20 {
    event UpdateTransferWhitelist(address indexed account, bool active);

    error TransferNotAllowed();
    error NotOwner(address sender);

    IMetaBeraborrowCore immutable metaBeraborrowCore;
    mapping(address => bool) public transferWhitelist;

    constructor(address _metaBeraborrowCore) ERC20("Pollen points", "cPOLLEN") {
        metaBeraborrowCore = IMetaBeraborrowCore(_metaBeraborrowCore);
    }

    modifier onlyOwner() {
        _onlyOwner();
        _;
    }

    function mint(address account, uint256 amount) external onlyOwner {
        _mint(account, amount);
    }

    function updateTransferWhitelist(address account, bool active) external onlyOwner {
        transferWhitelist[account] = active;

        emit UpdateTransferWhitelist(account, active);
    }

    function _beforeTokenTransfer(address from, address to, uint256 /*amount*/ ) internal view override {
        if (from != address(0) && !transferWhitelist[from] && !transferWhitelist[to]) {
            revert TransferNotAllowed();
        }
    }

    function _onlyOwner() private view {
        if (msg.sender != metaBeraborrowCore.owner()) revert NotOwner(msg.sender);
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 3 of 6 : IMetaBeraborrowCore.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.26;

interface IMetaBeraborrowCore {
    // ---------------------------------
    // Structures
    // ---------------------------------
    struct FeeInfo {
        bool existsForNect;
        uint16 nectFee;
    }

    struct RebalancerFeeInfo {
        bool exists;
        uint16 entryFee;
        uint16 exitFee;
    }

    // ---------------------------------
    // Public constants
    // ---------------------------------
    function OWNERSHIP_TRANSFER_DELAY() external view returns (uint256);
    function DEFAULT_FLASH_LOAN_FEE() external view returns (uint16);

    // ---------------------------------
    // Public state variables
    // ---------------------------------
    function nect() external view returns (address);
    function lspEntryFee() external view returns (uint16);
    function lspExitFee() external view returns (uint16);

    function feeReceiver() external view returns (address);
    function priceFeed() external view returns (address);
    function owner() external view returns (address);
    function pendingOwner() external view returns (address);
    function ownershipTransferDeadline() external view returns (uint256);
    function manager() external view returns (address);
    function guardian() external view returns (address);
    function paused() external view returns (bool);
    function lspBootstrapPeriod() external view returns (uint64);

    // ---------------------------------
    // External functions
    // ---------------------------------
    function setFeeReceiver(address _feeReceiver) external;
    function setPriceFeed(address _priceFeed) external;
    function setGuardian(address _guardian) external;
    function setManager(address _manager) external;

    /**
     * @notice Global pause/unpause
     *         Pausing halts new deposits/borrowing across the protocol
     */
    function setPaused(bool _paused) external;

    /**
     * @notice Extend or change the LSP bootstrap period,
     *         after which certain protocol mechanics change
     */
    function setLspBootstrapPeriod(uint64 _bootstrapPeriod) external;

    /**
     * @notice Set a custom flash-loan fee for a given periphery contract
     * @param _periphery Target contract that will get this custom fee
     * @param _nectFee Fee in basis points (bp)
     * @param _existsForNect Whether this custom fee is used when the caller = `nect`
     */
    function setPeripheryFlashLoanFee(address _periphery, uint16 _nectFee, bool _existsForNect) external;

    /**
     * @notice Begin the ownership transfer process
     * @param newOwner The address proposed to be the new owner
     */
    function commitTransferOwnership(address newOwner) external;

    /**
     * @notice Finish the ownership transfer, after the mandatory delay
     */
    function acceptTransferOwnership() external;

    /**
     * @notice Revoke a pending ownership transfer
     */
    function revokeTransferOwnership() external;

    /**
     * @notice Look up a custom flash-loan fee for a specific periphery contract
     * @param peripheryContract The contract that might have a custom fee
     * @return The flash-loan fee in basis points
     */
    function getPeripheryFlashLoanFee(address peripheryContract) external view returns (uint16);

    /**
     * @notice Set / override entry & exit fees for a special rebalancer contract
     */
    function setRebalancerFee(address _rebalancer, uint16 _entryFee, uint16 _exitFee) external;

    /**
     * @notice Set the LSP entry fee globally
     * @param _fee Fee in basis points
     */
    function setEntryFee(uint16 _fee) external;

    /**
     * @notice Set the LSP exit fee globally
     * @param _fee Fee in basis points
     */
    function setExitFee(uint16 _fee) external;

    /**
     * @notice Look up the LSP entry fee for a rebalancer
     * @param rebalancer Possibly has a special fee
     * @return The entry fee in basis points
     */
    function getLspEntryFee(address rebalancer) external view returns (uint16);

    /**
     * @notice Look up the LSP exit fee for a rebalancer
     * @param rebalancer Possibly has a special fee
     * @return The exit fee in basis points
     */
    function getLspExitFee(address rebalancer) external view returns (uint16);

    // ---------------------------------
    // Events
    // ---------------------------------
    event NewOwnerCommitted(address indexed owner, address indexed pendingOwner, uint256 deadline);
    event NewOwnerAccepted(address indexed oldOwner, address indexed newOwner);
    event NewOwnerRevoked(address indexed owner, address indexed revokedOwner);

    event FeeReceiverSet(address indexed feeReceiver);
    event PriceFeedSet(address indexed priceFeed);
    event GuardianSet(address indexed guardian);
    event ManagerSet(address indexed manager);
    event PeripheryFlashLoanFee(address indexed periphery, uint16 nectFee);
    event LSPBootstrapPeriodSet(uint64 bootstrapPeriod);
    event RebalancerFees(address indexed rebalancer, uint16 entryFee, uint16 exitFee);
    event EntryFeeSet(uint16 fee);
    event ExitFeeSet(uint16 fee);
    event Paused();
    event Unpaused();
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "@openzeppelin-upgradeable/contracts/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "solady/=lib/solady/src/",
    "@chimera/=lib/chimera/src/",
    "forge-std/=lib/forge-std/src/",
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "chimera/=lib/chimera/src/",
    "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "cancun",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_metaBeraborrowCore","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"NotOwner","type":"error"},{"inputs":[],"name":"TransferNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"UpdateTransferWhitelist","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"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":"","type":"address"}],"name":"transferWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"name":"updateTransferWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561000f575f80fd5b50604051611c66380380611c6683398181016040528101906100319190610157565b6040518060400160405280600d81526020017f506f6c6c656e20706f696e7473000000000000000000000000000000000000008152506040518060400160405280600781526020017f63504f4c4c454e0000000000000000000000000000000000000000000000000081525081600390816100ac91906103bc565b5080600490816100bc91906103bc565b5050508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505061048b565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610126826100fd565b9050919050565b6101368161011c565b8114610140575f80fd5b50565b5f815190506101518161012d565b92915050565b5f6020828403121561016c5761016b6100f9565b5b5f61017984828501610143565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806101fd57607f821691505b6020821081036102105761020f6101b9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610237565b61027c8683610237565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6102c06102bb6102b684610294565b61029d565b610294565b9050919050565b5f819050919050565b6102d9836102a6565b6102ed6102e5826102c7565b848454610243565b825550505050565b5f90565b6103016102f5565b61030c8184846102d0565b505050565b5b8181101561032f576103245f826102f9565b600181019050610312565b5050565b601f8211156103745761034581610216565b61034e84610228565b8101602085101561035d578190505b61037161036985610228565b830182610311565b50505b505050565b5f82821c905092915050565b5f6103945f1984600802610379565b1980831691505092915050565b5f6103ac8383610385565b9150826002028217905092915050565b6103c582610182565b67ffffffffffffffff8111156103de576103dd61018c565b5b6103e882546101e6565b6103f3828285610333565b5f60209050601f831160018114610424575f8415610412578287015190505b61041c85826103a1565b865550610483565b601f19841661043286610216565b5f5b8281101561045957848901518255600182019150602085019450602081019050610434565b868310156104765784890151610472601f891682610385565b8355505b6001600288020188555050505b505050505050565b6080516117c36104a35f395f610bd501526117c35ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461026e578063a457c2d71461028c578063a9059cbb146102bc578063dd62ed3e146102ec576100e8565b806370a08231146101f25780637ffbe241146102225780638908365414610252576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806340c10f19146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f461031c565b6040516101019190610fa6565b60405180910390f35b610124600480360381019061011f9190611057565b6103ac565b60405161013191906110af565b60405180910390f35b6101426103ce565b60405161014f91906110d7565b60405180910390f35b610172600480360381019061016d91906110f0565b6103d7565b60405161017f91906110af565b60405180910390f35b610190610405565b60405161019d919061115b565b60405180910390f35b6101c060048036038101906101bb9190611057565b61040d565b6040516101cd91906110af565b60405180910390f35b6101f060048036038101906101eb9190611057565b610443565b005b61020c60048036038101906102079190611174565b610459565b60405161021991906110d7565b60405180910390f35b61023c60048036038101906102379190611174565b61049e565b60405161024991906110af565b60405180910390f35b61026c600480360381019061026791906111c9565b6104bb565b005b610276610569565b6040516102839190610fa6565b60405180910390f35b6102a660048036038101906102a19190611057565b6105f9565b6040516102b391906110af565b60405180910390f35b6102d660048036038101906102d19190611057565b61066e565b6040516102e391906110af565b60405180910390f35b61030660048036038101906103019190611207565b610690565b60405161031391906110d7565b60405180910390f35b60606003805461032b90611272565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611272565b80156103a25780601f10610379576101008083540402835291602001916103a2565b820191905f5260205f20905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b5f806103b6610712565b90506103c3818585610719565b600191505092915050565b5f600254905090565b5f806103e1610712565b90506103ee8582856108dc565b6103f9858585610967565b60019150509392505050565b5f6012905090565b5f80610417610712565b90506104388185856104298589610690565b61043391906112cf565b610719565b600191505092915050565b61044b610bd3565b6104558282610cd1565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6005602052805f5260405f205f915054906101000a900460ff1681565b6104c3610bd3565b8060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f196580cfe61ebd442fa7b6c5f7bc70e39e3560975362c85664272d488fa1d03a8260405161055d91906110af565b60405180910390a25050565b60606004805461057890611272565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611272565b80156105ef5780601f106105c6576101008083540402835291602001916105ef565b820191905f5260205f20905b8154815290600101906020018083116105d257829003601f168201915b5050505050905090565b5f80610603610712565b90505f6106108286610690565b905083811015610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90611372565b60405180910390fd5b6106628286868403610719565b60019250505092915050565b5f80610678610712565b9050610685818585610967565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611400565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061148e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cf91906110d7565b60405180910390a3505050565b5f6108e78484610690565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109615781811015610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906114f6565b60405180910390fd5b6109608484848403610719565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90611584565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90611612565b60405180910390fd5b610a4e838383610e1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906116a0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bba91906110d7565b60405180910390a3610bcd848484610f31565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6091906116d2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ccf57336040517f245aecd3000000000000000000000000000000000000000000000000000000008152600401610cc6919061170c565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061176f565b60405180910390fd5b610d4a5f8383610e1f565b8060025f828254610d5b91906112cf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0891906110d7565b60405180910390a3610e1b5f8383610f31565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ea2575060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610ef5575060055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610f2c576040517f8cd22d1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f7882610f36565b610f828185610f40565b9350610f92818560208601610f50565b610f9b81610f5e565b840191505092915050565b5f6020820190508181035f830152610fbe8184610f6e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ff382610fca565b9050919050565b61100381610fe9565b811461100d575f80fd5b50565b5f8135905061101e81610ffa565b92915050565b5f819050919050565b61103681611024565b8114611040575f80fd5b50565b5f813590506110518161102d565b92915050565b5f806040838503121561106d5761106c610fc6565b5b5f61107a85828601611010565b925050602061108b85828601611043565b9150509250929050565b5f8115159050919050565b6110a981611095565b82525050565b5f6020820190506110c25f8301846110a0565b92915050565b6110d181611024565b82525050565b5f6020820190506110ea5f8301846110c8565b92915050565b5f805f6060848603121561110757611106610fc6565b5b5f61111486828701611010565b935050602061112586828701611010565b925050604061113686828701611043565b9150509250925092565b5f60ff82169050919050565b61115581611140565b82525050565b5f60208201905061116e5f83018461114c565b92915050565b5f6020828403121561118957611188610fc6565b5b5f61119684828501611010565b91505092915050565b6111a881611095565b81146111b2575f80fd5b50565b5f813590506111c38161119f565b92915050565b5f80604083850312156111df576111de610fc6565b5b5f6111ec85828601611010565b92505060206111fd858286016111b5565b9150509250929050565b5f806040838503121561121d5761121c610fc6565b5b5f61122a85828601611010565b925050602061123b85828601611010565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061128957607f821691505b60208210810361129c5761129b611245565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112d982611024565b91506112e483611024565b92508282019050808211156112fc576112fb6112a2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61135c602583610f40565b915061136782611302565b604082019050919050565b5f6020820190508181035f83015261138981611350565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602483610f40565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611478602283610f40565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6114e0601d83610f40565b91506114eb826114ac565b602082019050919050565b5f6020820190508181035f83015261150d816114d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156e602583610f40565b915061157982611514565b604082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fc602383610f40565b9150611607826115a2565b604082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61168a602683610f40565b915061169582611630565b604082019050919050565b5f6020820190508181035f8301526116b78161167e565b9050919050565b5f815190506116cc81610ffa565b92915050565b5f602082840312156116e7576116e6610fc6565b5b5f6116f4848285016116be565b91505092915050565b61170681610fe9565b82525050565b5f60208201905061171f5f8301846116fd565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611759601f83610f40565b915061176482611725565b602082019050919050565b5f6020820190508181035f8301526117868161174d565b905091905056fea2646970667358221220db052ee69c33ed59518a1ee865a77ff8d6f43bc8ccd2249cd4c9d76967346e8d64736f6c634300081a003300000000000000000000000027393e8a6f8f2e32b870903279999c820e984dc7

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461026e578063a457c2d71461028c578063a9059cbb146102bc578063dd62ed3e146102ec576100e8565b806370a08231146101f25780637ffbe241146102225780638908365414610252576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806340c10f19146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f461031c565b6040516101019190610fa6565b60405180910390f35b610124600480360381019061011f9190611057565b6103ac565b60405161013191906110af565b60405180910390f35b6101426103ce565b60405161014f91906110d7565b60405180910390f35b610172600480360381019061016d91906110f0565b6103d7565b60405161017f91906110af565b60405180910390f35b610190610405565b60405161019d919061115b565b60405180910390f35b6101c060048036038101906101bb9190611057565b61040d565b6040516101cd91906110af565b60405180910390f35b6101f060048036038101906101eb9190611057565b610443565b005b61020c60048036038101906102079190611174565b610459565b60405161021991906110d7565b60405180910390f35b61023c60048036038101906102379190611174565b61049e565b60405161024991906110af565b60405180910390f35b61026c600480360381019061026791906111c9565b6104bb565b005b610276610569565b6040516102839190610fa6565b60405180910390f35b6102a660048036038101906102a19190611057565b6105f9565b6040516102b391906110af565b60405180910390f35b6102d660048036038101906102d19190611057565b61066e565b6040516102e391906110af565b60405180910390f35b61030660048036038101906103019190611207565b610690565b60405161031391906110d7565b60405180910390f35b60606003805461032b90611272565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611272565b80156103a25780601f10610379576101008083540402835291602001916103a2565b820191905f5260205f20905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b5f806103b6610712565b90506103c3818585610719565b600191505092915050565b5f600254905090565b5f806103e1610712565b90506103ee8582856108dc565b6103f9858585610967565b60019150509392505050565b5f6012905090565b5f80610417610712565b90506104388185856104298589610690565b61043391906112cf565b610719565b600191505092915050565b61044b610bd3565b6104558282610cd1565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6005602052805f5260405f205f915054906101000a900460ff1681565b6104c3610bd3565b8060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f196580cfe61ebd442fa7b6c5f7bc70e39e3560975362c85664272d488fa1d03a8260405161055d91906110af565b60405180910390a25050565b60606004805461057890611272565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611272565b80156105ef5780601f106105c6576101008083540402835291602001916105ef565b820191905f5260205f20905b8154815290600101906020018083116105d257829003601f168201915b5050505050905090565b5f80610603610712565b90505f6106108286610690565b905083811015610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90611372565b60405180910390fd5b6106628286868403610719565b60019250505092915050565b5f80610678610712565b9050610685818585610967565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611400565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061148e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cf91906110d7565b60405180910390a3505050565b5f6108e78484610690565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109615781811015610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906114f6565b60405180910390fd5b6109608484848403610719565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90611584565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90611612565b60405180910390fd5b610a4e838383610e1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906116a0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bba91906110d7565b60405180910390a3610bcd848484610f31565b50505050565b7f00000000000000000000000027393e8a6f8f2e32b870903279999c820e984dc773ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6091906116d2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ccf57336040517f245aecd3000000000000000000000000000000000000000000000000000000008152600401610cc6919061170c565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061176f565b60405180910390fd5b610d4a5f8383610e1f565b8060025f828254610d5b91906112cf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0891906110d7565b60405180910390a3610e1b5f8383610f31565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ea2575060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610ef5575060055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610f2c576040517f8cd22d1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f7882610f36565b610f828185610f40565b9350610f92818560208601610f50565b610f9b81610f5e565b840191505092915050565b5f6020820190508181035f830152610fbe8184610f6e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ff382610fca565b9050919050565b61100381610fe9565b811461100d575f80fd5b50565b5f8135905061101e81610ffa565b92915050565b5f819050919050565b61103681611024565b8114611040575f80fd5b50565b5f813590506110518161102d565b92915050565b5f806040838503121561106d5761106c610fc6565b5b5f61107a85828601611010565b925050602061108b85828601611043565b9150509250929050565b5f8115159050919050565b6110a981611095565b82525050565b5f6020820190506110c25f8301846110a0565b92915050565b6110d181611024565b82525050565b5f6020820190506110ea5f8301846110c8565b92915050565b5f805f6060848603121561110757611106610fc6565b5b5f61111486828701611010565b935050602061112586828701611010565b925050604061113686828701611043565b9150509250925092565b5f60ff82169050919050565b61115581611140565b82525050565b5f60208201905061116e5f83018461114c565b92915050565b5f6020828403121561118957611188610fc6565b5b5f61119684828501611010565b91505092915050565b6111a881611095565b81146111b2575f80fd5b50565b5f813590506111c38161119f565b92915050565b5f80604083850312156111df576111de610fc6565b5b5f6111ec85828601611010565b92505060206111fd858286016111b5565b9150509250929050565b5f806040838503121561121d5761121c610fc6565b5b5f61122a85828601611010565b925050602061123b85828601611010565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061128957607f821691505b60208210810361129c5761129b611245565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112d982611024565b91506112e483611024565b92508282019050808211156112fc576112fb6112a2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61135c602583610f40565b915061136782611302565b604082019050919050565b5f6020820190508181035f83015261138981611350565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602483610f40565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611478602283610f40565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6114e0601d83610f40565b91506114eb826114ac565b602082019050919050565b5f6020820190508181035f83015261150d816114d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156e602583610f40565b915061157982611514565b604082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fc602383610f40565b9150611607826115a2565b604082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61168a602683610f40565b915061169582611630565b604082019050919050565b5f6020820190508181035f8301526116b78161167e565b9050919050565b5f815190506116cc81610ffa565b92915050565b5f602082840312156116e7576116e6610fc6565b5b5f6116f4848285016116be565b91505092915050565b61170681610fe9565b82525050565b5f60208201905061171f5f8301846116fd565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611759601f83610f40565b915061176482611725565b602082019050919050565b5f6020820190508181035f8301526117868161174d565b905091905056fea2646970667358221220db052ee69c33ed59518a1ee865a77ff8d6f43bc8ccd2249cd4c9d76967346e8d64736f6c634300081a0033

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

00000000000000000000000027393e8a6f8f2e32b870903279999c820e984dc7

-----Decoded View---------------
Arg [0] : _metaBeraborrowCore (address): 0x27393e8a6f8f2e32B870903279999C820E984DC7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000027393e8a6f8f2e32b870903279999c820e984dc7


Block Transaction Gas Used Reward
view all blocks produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.