Contract
0xfe9c44273189f0b9218c81cfd7d95c4d6a7220e4
1
Contract Overview
Balance:
0 FTM
My Name Tag:
Not Available
[ Download CSV Export ]
Latest 10 internal transactions
[ Download CSV Export ]
Contract Name:
GluonWallet
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-09-13 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 { } } // File: contracts/IGluonWallet.sol pragma solidity 0.7.6; interface IGluonWallet { function withdrawFromToken(address from, address to, address l2TokenAddress, uint quantity) external; } // File: contracts/ERC20Token.sol pragma solidity ^0.7.6; contract ERC20Token is ERC20 { using SafeMath for uint256; address public L1Address; address public owner; uint public network; modifier isOwner {require(msg.sender == owner, "not an owner"); _;} constructor(string memory name_, string memory symbol_, uint8 decimals_, address L1Address_, uint network_) ERC20(name_, symbol_) { _setupDecimals(decimals_); L1Address = L1Address_; network = network_; owner = msg.sender; } function mint(address account, uint256 amount) public isOwner { _mint(account, amount); } function burn(address account, uint256 amount) public isOwner { _burn(account, amount); } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { if (uint160(recipient) > 0xffff) return super.transferFrom(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); IGluonWallet(owner).withdrawFromToken(sender, recipient, address(this), amount); return true; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if (uint160(recipient) > 0xffff) return super.transfer(recipient, amount); IGluonWallet(owner).withdrawFromToken(_msgSender(), recipient, address(this), amount); return true; } function info() public view virtual returns (string memory, uint8, address, uint){ return (symbol(), decimals(), L1Address, network); } } // File: contracts/GluonWallet.sol pragma solidity ^0.7.6; contract GluonWallet is Context { mapping(bytes32 => bool) public deposits; string public version; mapping(uint => mapping(address => address)) public contracts; // network => (l1TokenAddress => ERC20) address[] public tokens; address public owner; struct WithdrawReq { address user; address to; address l1TokenAddress; uint network; uint quantity; bytes32 txhash; } WithdrawReq[] public withdrawQueue; /// @notice requires the sender to be one of the contract owners modifier onlyOwner {require(_msgSender() == owner, "invalid sender; must be owner"); _;} event Deposited(address indexed from, address indexed l1TokenAddress, address indexed l2TokenAddress, uint quantity, bytes32 txHash); event Withdrawn(address indexed from, address indexed to, address indexed l2TokenAddress, address l1TokenAddress, uint quantity, uint index, uint timestamp); event TokenCreated(uint indexed network, address l1TokenAddress, address l2TokenAddress); constructor(address owner_, string memory version_){ version = version_; owner = owner_; } function deposit(address from, address l1TokenAddress, uint quantity, bytes32 txHash, string memory symbol_, uint8 decimals_, uint network) public onlyOwner { require(!deposits[txHash], 'already credited'); ERC20Token internalToken = ERC20Token(getOrCreateToken(symbol_, decimals_, l1TokenAddress, network)); deposits[txHash] = true; internalToken.mint(from, quantity); emit Deposited(from, l1TokenAddress, address(internalToken), quantity, txHash); } function withdraw(address to, address l2TokenAddress, uint quantity) public { _withdraw(_msgSender(), to, l2TokenAddress, quantity); } function withdrawFromToken(address from, address to, address l2TokenAddress, uint quantity) public { require(_msgSender() == l2TokenAddress, "sender must be proxytoken"); _withdraw(from, to, l2TokenAddress, quantity); } function _withdraw(address from, address to, address l2TokenAddress, uint quantity) private { ERC20Token internalToken = ERC20Token(l2TokenAddress); require(internalToken.balanceOf(from) >= quantity, 'insufficient balance'); withdrawQueue.push(WithdrawReq(from, to, internalToken.L1Address(), internalToken.network(), quantity, 0x0)); internalToken.burn(from, quantity); emit Withdrawn(from, to, address(internalToken), internalToken.L1Address(), quantity, withdrawQueue.length - 1, block.timestamp); } function withdrawTx(uint index, bytes32 txhash) public onlyOwner { withdrawQueue[index].txhash = txhash; } function getOrCreateToken(string memory symbol_, uint8 decimals_, address l1TokenAddress, uint network) public onlyOwner returns (address l2TokenAddress){ l2TokenAddress = contracts[network][l1TokenAddress]; if (l2TokenAddress != address(0x0)) return l2TokenAddress; l2TokenAddress = address(new ERC20Token(symbol_, symbol_, decimals_, l1TokenAddress, network)); contracts[network][l1TokenAddress] = l2TokenAddress; tokens.push(address(l2TokenAddress)); emit TokenCreated(network, l1TokenAddress, l2TokenAddress); } function getAllTokens() public view returns (address[] memory){ return tokens; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"string","name":"version_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"l1TokenAddress","type":"address"},{"indexed":true,"internalType":"address","name":"l2TokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"txHash","type":"bytes32"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"network","type":"uint256"},{"indexed":false,"internalType":"address","name":"l1TokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"l2TokenAddress","type":"address"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"address","name":"l2TokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"l1TokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"contracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"l1TokenAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32","name":"txHash","type":"bytes32"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"network","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"deposits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"l1TokenAddress","type":"address"},{"internalType":"uint256","name":"network","type":"uint256"}],"name":"getOrCreateToken","outputs":[{"internalType":"address","name":"l2TokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"l2TokenAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"l2TokenAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"withdrawFromToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawQueue","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"l1TokenAddress","type":"address"},{"internalType":"uint256","name":"network","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32","name":"txhash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32","name":"txhash","type":"bytes32"}],"name":"withdrawTx","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620025e3380380620025e3833981810160405260408110156200003757600080fd5b8151602083018051604051929492938301929190846401000000008211156200005f57600080fd5b9083019060208201858111156200007557600080fd5b82516401000000008111828201881017156200009057600080fd5b82525081516020918201929091019080838360005b83811015620000bf578181015183820152602001620000a5565b50505050905090810190601f168015620000ed5780820380516001836020036101000a031916815260200191505b5060405250508151620001099150600190602084019062000131565b5050600480546001600160a01b0319166001600160a01b0392909216919091179055620001dd565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b6123f680620001ed6000396000f3fe60806040523480156200001157600080fd5b5060043610620000c45760003560e01c806354fd4d50116200007b57806354fd4d5014620002de57806362518ddf14620003605780638da5cb5b14620003c2578063c179436514620003cc578063d9caed1214620003f2578063df1b643f146200042b57620000c4565b80630708219014620000c957806321eac5f2146200010a5780632a5c792a14620001555780633d4dff7b14620001b15780633e87bb7114620001e55780634f64b2be14620002be575b600080fd5b6200010860048036036080811015620000e157600080fd5b506001600160a01b03813581169160208101358216916040820135169060600135620004ee565b005b62000139600480360360408110156200012257600080fd5b50803590602001356001600160a01b031662000572565b604080516001600160a01b039092168252519081900360200190f35b6200015f62000598565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200019d57818101518382015260200162000183565b505050509050019250505060405180910390f35b620001d160048036036020811015620001c957600080fd5b5035620005fc565b604080519115158252519081900360200190f35b62000108600480360360e0811015620001fd57600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a0810160808201356401000000008111156200023e57600080fd5b8201836020820111156200025157600080fd5b803590602001918460018302840111640100000000831117156200027457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050506020013562000611565b6200013960048036036020811015620002d657600080fd5b5035620007c4565b620002e8620007ef565b6040805160208082528351818301528351919283929083019185019080838360005b83811015620003245781810151838201526020016200030a565b50505050905090810190601f168015620003525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b62000380600480360360208110156200037857600080fd5b503562000880565b604080516001600160a01b039788168152958716602087015293909516848401526060840191909152608083015260a082019290925290519081900360c00190f35b62000139620008d7565b6200010860048036036040811015620003e457600080fd5b5080359060200135620008e6565b62000108600480360360608110156200040a57600080fd5b506001600160a01b0381358116916020810135909116906040013562000980565b62000139600480360360808110156200044357600080fd5b8101906020810181356401000000008111156200045f57600080fd5b8201836020820111156200047257600080fd5b803590602001918460018302840111640100000000831117156200049557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff1692505060208101356001600160a01b031690604001356200099c565b816001600160a01b03166200050262000c27565b6001600160a01b0316146200055e576040805162461bcd60e51b815260206004820152601960248201527f73656e646572206d7573742062652070726f7879746f6b656e00000000000000604482015290519081900360640190fd5b6200056c8484848462000c2b565b50505050565b60026020908152600092835260408084209091529082529020546001600160a01b031681565b60606003805480602002602001604051908101604052809291908181526020018280548015620005f257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620005d3575b5050505050905090565b60006020819052908152604090205460ff1681565b6004546001600160a01b03166200062762000c27565b6001600160a01b03161462000683576040805162461bcd60e51b815260206004820152601d60248201527f696e76616c69642073656e6465723b206d757374206265206f776e6572000000604482015290519081900360640190fd5b60008481526020819052604090205460ff1615620006db576040805162461bcd60e51b815260206004820152601060248201526f185b1c9958591e4818dc99591a5d195960821b604482015290519081900360640190fd5b6000620006eb848489856200099c565b600086815260208190526040808220805460ff1916600117905580516340c10f1960e01b81526001600160a01b038c81166004830152602482018b90529151939450908416926340c10f199260448084019391929182900301818387803b1580156200075657600080fd5b505af11580156200076b573d6000803e3d6000fd5b5050604080518981526020810189905281516001600160a01b0380871695508c811694508d16927f92b217ae3095fb67c3713a6d1c57c41898a582d3c2bbf086f522ddda218b841c928290030190a45050505050505050565b60038181548110620007d557600080fd5b6000918252602090912001546001600160a01b0316905081565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620008785780601f106200084c5761010080835404028352916020019162000878565b820191906000526020600020905b8154815290600101906020018083116200085a57829003601f168201915b505050505081565b600581815481106200089157600080fd5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0394851696509284169491909316929186565b6004546001600160a01b031681565b6004546001600160a01b0316620008fc62000c27565b6001600160a01b03161462000958576040805162461bcd60e51b815260206004820152601d60248201527f696e76616c69642073656e6465723b206d757374206265206f776e6572000000604482015290519081900360640190fd5b80600583815481106200096757fe5b9060005260206000209060060201600501819055505050565b620009976200098e62000c27565b84848462000c2b565b505050565b6004546000906001600160a01b0316620009b562000c27565b6001600160a01b03161462000a11576040805162461bcd60e51b815260206004820152601d60248201527f696e76616c69642073656e6465723b206d757374206265206f776e6572000000604482015290519081900360640190fd5b5060008181526002602090815260408083206001600160a01b03808716855292529091205416801562000a445762000c1f565b848585858560405162000a579062000fdb565b60ff841660408201526001600160a01b03831660608201526080810182905260a08082528651908201528551819060208083019160c08401918a019080838360005b8381101562000ab357818101518382015260200162000a99565b50505050905090810190601f16801562000ae15780820380516001836020036101000a031916815260200191505b50838103825287518152875160209182019189019080838360005b8381101562000b1657818101518382015260200162000afc565b50505050905090810190601f16801562000b445780820380516001836020036101000a031916815260200191505b50975050505050505050604051809103906000f08015801562000b6b573d6000803e3d6000fd5b5060008381526002602090815260408083206001600160a01b0380891680865291845282852080549187166001600160a01b031992831681179091556003805460018101825596527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b909501805490911685179055815190815291820192909252815192935084927f3ecf80517ebfa33777812e7abe7aba8f42e03f80ed9c79fbaca3c6d013437af9929181900390910190a25b949350505050565b3390565b600082905081816001600160a01b03166370a08231876040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801562000c7f57600080fd5b505afa15801562000c94573d6000803e3d6000fd5b505050506040513d602081101562000cab57600080fd5b5051101562000cf8576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b60056040518060c00160405280876001600160a01b03168152602001866001600160a01b03168152602001836001600160a01b031663dffc94886040518163ffffffff1660e01b815260040160206040518083038186803b15801562000d5d57600080fd5b505afa15801562000d72573d6000803e3d6000fd5b505050506040513d602081101562000d8957600080fd5b50516001600160a01b0390811682526040805163339cd7e560e11b8152905160209384019392871692636739afca9260048082019391829003018186803b15801562000dd457600080fd5b505afa15801562000de9573d6000803e3d6000fd5b505050506040513d602081101562000e0057600080fd5b50518152602080820186905260006040928301819052845460018082018755958252828220855160069092020180546001600160a01b03199081166001600160a01b03938416178255938601519681018054851697831697909717909655848401516002870180549094169082161790925560608401516003860155608084015160048087019190915560a0909401516005909501949094558151632770a7eb60e21b81528982169381019390935260248301869052905190841692639dc29fac926044808201939182900301818387803b15801562000edf57600080fd5b505af115801562000ef4573d6000803e3d6000fd5b50505050806001600160a01b0316846001600160a01b0316866001600160a01b03167f6a9c828ef646db99cc7a20bbfb02fdf8f7dcc183400a28daab4968e47b9a21e0846001600160a01b031663dffc94886040518163ffffffff1660e01b815260040160206040518083038186803b15801562000f7157600080fd5b505afa15801562000f86573d6000803e3d6000fd5b505050506040513d602081101562000f9d57600080fd5b5051600554604080516001600160a01b0390931683526020830189905260001990910182820152426060830152519081900360800190a45050505050565b6113d78062000fea8339019056fe60806040523480156200001157600080fd5b50604051620013d7380380620013d7833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604090815260208281015191830151606090930151875192955092935086918691620001cb9160039185019062000257565b508051620001e190600490602084019062000257565b50506005805460ff1916601217905550620001fc8362000241565b600580546001600160a01b0390931661010002610100600160a81b0319909316929092179091556007555050600680546001600160a01b031916331790555062000303565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b6110c480620003136000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636739afca116100a25780639dc29fac116100715780639dc29fac14610390578063a457c2d7146103bc578063a9059cbb146103e8578063dd62ed3e14610414578063dffc9488146104425761010b565b80636739afca1461033657806370a082311461033e5780638da5cb5b1461036457806395d89b41146103885761010b565b8063313ce567116100de578063313ce5671461021d578063370158ea1461023b57806339509351146102dc57806340c10f19146103085761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b61011861044a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b0381351690602001356104e0565b604080519115158252519081900360200190f35b6101d56104fe565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610504565b6102256105f7565b6040805160ff9092168252519081900360200190f35b610243610600565b60405180806020018560ff168152602001846001600160a01b03168152602001838152602001828103825286818151815260200191508051906020019080838360005b8381101561029e578181015183820152602001610286565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b6101b9600480360360408110156102f257600080fd5b506001600160a01b038135169060200135610639565b6103346004803603604081101561031e57600080fd5b506001600160a01b038135169060200135610687565b005b6101d56106e3565b6101d56004803603602081101561035457600080fd5b50356001600160a01b03166106e9565b61036c610704565b604080516001600160a01b039092168252519081900360200190f35b610118610713565b610334600480360360408110156103a657600080fd5b506001600160a01b038135169060200135610774565b6101b9600480360360408110156103d257600080fd5b506001600160a01b0381351690602001356107cc565b6101b9600480360360408110156103fe57600080fd5b506001600160a01b038135169060200135610834565b6101d56004803603604081101561042a57600080fd5b506001600160a01b03813581169160200135166108ef565b61036c61091a565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104f46104ed61092e565b8484610932565b5060015b92915050565b60025490565b600061ffff836001600160a01b0316111561052b57610524848484610a1e565b90506105f0565b6105718461053761092e565b61056c85604051806060016040528060288152602001610fd8602891396105658a61056061092e565b6108ef565b9190610aa0565b610932565b600654604080516270821960e41b81526001600160a01b03878116600483015286811660248301523060448301526064820186905291519190921691630708219091608480830192600092919082900301818387803b1580156105d357600080fd5b505af11580156105e7573d6000803e3d6000fd5b50505050600190505b9392505050565b60055460ff1690565b6060600080600061060f610713565b6106176105f7565b600554600754929791965061010090046001600160a01b031694509092509050565b60006104f461064661092e565b8461056c856001600061065761092e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b37565b6006546001600160a01b031633146106d5576040805162461bcd60e51b815260206004820152600c60248201526b3737ba1030b71037bbb732b960a11b604482015290519081900360640190fd5b6106df8282610b91565b5050565b60075481565b6001600160a01b031660009081526020819052604090205490565b6006546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d65780601f106104ab576101008083540402835291602001916104d6565b6006546001600160a01b031633146107c2576040805162461bcd60e51b815260206004820152600c60248201526b3737ba1030b71037bbb732b960a11b604482015290519081900360640190fd5b6106df8282610c81565b60006104f46107d961092e565b8461056c8560405180606001604052806025815260200161106a602591396001600061080361092e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610aa0565b600061ffff836001600160a01b0316111561085a576108538383610d7d565b90506104f8565b6006546001600160a01b0316630708219061087361092e565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291871660248301523060448301526064820186905251608480830192600092919082900301818387803b1580156108ce57600080fd5b505af11580156108e2573d6000803e3d6000fd5b5060019695505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b0383166109775760405162461bcd60e51b81526004018080602001828103825260248152602001806110466024913960400191505060405180910390fd5b6001600160a01b0382166109bc5760405162461bcd60e51b8152600401808060200182810382526022815260200180610f906022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610a2b848484610d8d565b610a9684610a3761092e565b61056c85604051806060016040528060288152602001610fd8602891396001600160a01b038a16600090815260016020526040812090610a7561092e565b6001600160a01b031681526020810191909152604001600020549190610aa0565b5060019392505050565b60008184841115610b2f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610af4578181015183820152602001610adc565b50505050905090810190601f168015610b215780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156105f0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610bec576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610bf860008383610ee8565b600254610c059082610b37565b6002556001600160a01b038216600090815260208190526040902054610c2b9082610b37565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610cc65760405162461bcd60e51b81526004018080602001828103825260218152602001806110006021913960400191505060405180910390fd5b610cd282600083610ee8565b610d0f81604051806060016040528060228152602001610f6e602291396001600160a01b0385166000908152602081905260409020549190610aa0565b6001600160a01b038316600090815260208190526040902055600254610d359082610eed565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006104f4610d8a61092e565b84845b6001600160a01b038316610dd25760405162461bcd60e51b81526004018080602001828103825260258152602001806110216025913960400191505060405180910390fd5b6001600160a01b038216610e175760405162461bcd60e51b8152600401808060200182810382526023815260200180610f4b6023913960400191505060405180910390fd5b610e22838383610ee8565b610e5f81604051806060016040528060268152602001610fb2602691396001600160a01b0386166000908152602081905260409020549190610aa0565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e8e9082610b37565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b505050565b600082821115610f44576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204270de83f746535c732a3b321a41b935a504e4ae991ffacc787c7c16fadf50a964736f6c63430007060033a2646970667358221220c6a9d4987b11c8808fcb983b08b7354b08f329e0d558a1afcc6d7dd9e3956ca464736f6c63430007060033000000000000000000000000b5705a01bf91917acad876f48750e85844ebd20900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000005302e302e31000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b5705a01bf91917acad876f48750e85844ebd20900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000005302e302e31000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : owner_ (address): 0xb5705a01bf91917acad876f48750e85844ebd209
Arg [1] : version_ (string): 0.0.1
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b5705a01bf91917acad876f48750e85844ebd209
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 302e302e31000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
24341:3485:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26209:242;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26209:242:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24455:61;;;;;;;;;;;;;;;;-1:-1:-1;24455:61:0;;;;;;-1:-1:-1;;;;;24455:61:0;;:::i;:::-;;;;-1:-1:-1;;;;;24455:61:0;;;;;;;;;;;;;;27729:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24380:40;;;;;;;;;;;;;;;;-1:-1:-1;24380:40:0;;:::i;:::-;;;;;;;;;;;;;;;;;;25544:501;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25544:501:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25544:501:0;;-1:-1:-1;;25544:501:0;;;;;-1:-1:-1;;;25544:501:0;;;;:::i;24563:23::-;;;;;;;;;;;;;;;;-1:-1:-1;24563:23:0;;:::i;24427:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24806:34;;;;;;;;;;;;;;;;-1:-1:-1;24806:34:0;;:::i;:::-;;;;-1:-1:-1;;;;;24806:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24593:20;;;:::i;27019:120::-;;;;;;;;;;;;;;;;-1:-1:-1;27019:120:0;;;;;;;:::i;26053:148::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26053:148:0;;;;;;;;;;;;;;;;;:::i;27147:574::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27147:574:0;;-1:-1:-1;;;27147:574:0;;;;;-1:-1:-1;;27147:574:0;;;;-1:-1:-1;;;;;27147:574:0;;;;;;:::i;26209:242::-;26343:14;-1:-1:-1;;;;;26327:30:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26327:30:0;;26319:68;;;;;-1:-1:-1;;;26319:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26398:45;26408:4;26414:2;26418:14;26434:8;26398:9;:45::i;:::-;26209:242;;;;:::o;24455:61::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24455:61:0;;:::o;27729:94::-;27774:16;27809:6;27802:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27802:13:0;;;;;;;;;;;;;;;;;;;;;;;27729:94;:::o;24380:40::-;;;;;;;;;;;;;;;;:::o;25544:501::-;24963:5;;-1:-1:-1;;;;;24963:5:0;24947:12;:10;:12::i;:::-;-1:-1:-1;;;;;24947:21:0;;24939:63;;;;;-1:-1:-1;;;24939:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25721:8:::1;:16:::0;;;::::1;::::0;;;;;;;::::1;;25720:17;25712:46;;;::::0;;-1:-1:-1;;;25712:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25712:46:0;;;;;;;;;;;;;::::1;;25769:24;25807:61;25824:7;25833:9;25844:14;25860:7;25807:16;:61::i;:::-;25880:8;:16:::0;;;::::1;::::0;;;;;;;:23;;-1:-1:-1;;25880:23:0::1;25899:4;25880:23;::::0;;25914:34;;-1:-1:-1;;;25914:34:0;;-1:-1:-1;;;;;25914:34:0;;::::1;;::::0;::::1;::::0;;;;;;;;;25769:100;;-1:-1:-1;25914:18:0;;::::1;::::0;::::1;::::0;:34;;;;;25880:8;;25914:34;;;;;;25880:8;25914:18;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;25964:73:0::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;25964:73:0;;::::1;::::0;-1:-1:-1;25964:73:0;;::::1;::::0;-1:-1:-1;25964:73:0;::::1;::::0;::::1;::::0;;;;;;::::1;25013:1;25544:501:::0;;;;;;;:::o;24563:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24563:23:0;;-1:-1:-1;24563:23:0;:::o;24427:21::-;;;;;;;;;;;;;;;-1:-1:-1;;24427:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24806:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24806:34:0;;;;-1:-1:-1;24806:34:0;;;;;;;;;;;:::o;24593:20::-;;;-1:-1:-1;;;;;24593:20:0;;:::o;27019:120::-;24963:5;;-1:-1:-1;;;;;24963:5:0;24947:12;:10;:12::i;:::-;-1:-1:-1;;;;;24947:21:0;;24939:63;;;;;-1:-1:-1;;;24939:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27125:6:::1;27095:13;27109:5;27095:20;;;;;;;;;;;;;;;;;;:27;;:36;;;;27019:120:::0;;:::o;26053:148::-;26140:53;26150:12;:10;:12::i;:::-;26164:2;26168:14;26184:8;26140:9;:53::i;:::-;26053:148;;;:::o;27147:574::-;24963:5;;27277:22;;-1:-1:-1;;;;;24963:5:0;24947:12;:10;:12::i;:::-;-1:-1:-1;;;;;24947:21:0;;24939:63;;;;;-1:-1:-1;;;24939:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27328:18:0::1;::::0;;;:9:::1;:18;::::0;;;;;;;-1:-1:-1;;;;;27328:34:0;;::::1;::::0;;;;;;;;::::1;27377:30:::0;;27373:57:::1;;27409:21;;27373:57;27481:7;27490;27499:9;27510:14;27526:7;27466:68;;;;;:::i;:::-;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;27466:68:0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;-1:-1:-1;27466:68:0::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;27466:68:0;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;27546:18:0::1;::::0;;;:9:::1;:18;::::0;;;;;;;-1:-1:-1;;;;;27546:34:0;;::::1;::::0;;;;;;;;;:51;;;;::::1;-1:-1:-1::0;;;;;;27546:51:0;;::::1;::::0;::::1;::::0;;;27608:6:::1;:36:::0;;27546:51;27608:36;::::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;27660:53;;;;;;;::::1;::::0;;;;;;27441:94;;-1:-1:-1;27556:7:0;;27660:53:::1;::::0;;;;;;;;;::::1;25013:1;27147:574:::0;;;;;;:::o;667:106::-;755:10;667:106;:::o;26459:552::-;26562:24;26600:14;26562:53;;26667:8;26634:13;-1:-1:-1;;;;;26634:23:0;;26658:4;26634:29;;;;;;;;;;;;;-1:-1:-1;;;;;26634:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26634:29:0;:41;;26626:74;;;;;-1:-1:-1;;;26626:74:0;;;;;;;;;;;;-1:-1:-1;;;26626:74:0;;;;;;;;;;;;;;;26711:13;26730:88;;;;;;;;26742:4;-1:-1:-1;;;;;26730:88:0;;;;;26748:2;-1:-1:-1;;;;;26730:88:0;;;;;26752:13;-1:-1:-1;;;;;26752:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26752:25:0;-1:-1:-1;;;;;26730:88:0;;;;;26779:23;;;-1:-1:-1;;;26779:23:0;;;;26752:25;26730:88;;;;26779:21;;;;;;:23;;;;;;;;;;;:21;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26779:23:0;26730:88;;26779:23;26730:88;;;;;;-1:-1:-1;26730:88:0;;;;;;;26711:108;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26711:108:0;;;-1:-1:-1;;;;;26711:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26830:34;;-1:-1:-1;;;26830:34:0;;;;;;;;;;;;;;;;;;;;:18;;;;;;:34;;;;;;;;;;;-1:-1:-1;26830:18:0;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26908:13;-1:-1:-1;;;;;26880:123:0;26896:2;-1:-1:-1;;;;;26880:123:0;26890:4;-1:-1:-1;;;;;26880:123:0;;26924:13;-1:-1:-1;;;;;26924:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26924:25:0;26961:13;:20;26880:123;;;-1:-1:-1;;;;;26880:123:0;;;;;26924:25;26880:123;;;;;-1:-1:-1;;26961:24:0;;;26880:123;;;;26987:15;26880:123;;;;;;;;;;;;;26459:552;;;;;:::o;-1:-1:-1:-;;;;;;;;:::o
Swarm Source
ipfs://c6a9d4987b11c8808fcb983b08b7354b08f329e0d558a1afcc6d7dd9e3956ca4
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|