Contract Overview
Balance:
0 CLV
CLV Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x6fb39fad688e9964da822fab7088e6a2f338850243d89a08d9e4b09b8f6ff67a | Set Alloc Kafra | 1541908 | 180 days 3 hrs ago | 0xe395605bd95b3a641b9d1266cdb256176419161a | IN | 0xb4704b6ae1934bb2d5ce2ef28c2bc1f2f95a0115 | 0 CLV | 0.0013302975 | |
0xf218cff46961fafaf653cc0256523e186e8ee97e1d1c38aa392a6ba51d061a20 | Set Alloc Kafra | 1541875 | 180 days 3 hrs ago | 0xe395605bd95b3a641b9d1266cdb256176419161a | IN | 0xb4704b6ae1934bb2d5ce2ef28c2bc1f2f95a0115 | 0 CLV | 0.0023382975 | |
0x60c933744a08a4dbfd0f8b36d04239a36a51cc19dad5a369aece8bbd9e657c1e | Set Fee Kafra | 1541873 | 180 days 3 hrs ago | 0xe395605bd95b3a641b9d1266cdb256176419161a | IN | 0xb4704b6ae1934bb2d5ce2ef28c2bc1f2f95a0115 | 0 CLV | 0.0023355675 | |
0x1f9e55b82f6eac9851dab34645229cdc79298ea6dea2768df2a92588a71f4472 | 0x60c06040 | 1541839 | 180 days 3 hrs ago | 0xe395605bd95b3a641b9d1266cdb256176419161a | IN | Create: IzludeV2 | 0 CLV | 0.1051994475 |
[ Download CSV Export ]
Contract Name:
IzludeV2
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./interfaces/IByalan.sol"; import "./interfaces/IFeeKafra.sol"; import "./interfaces/IIzludeV2.sol"; import "./interfaces/IAllocKafra.sol"; import "../libraries/Math.sol"; contract IzludeV2 is IIzludeV2, Ownable { using SafeERC20 for IERC20; uint256 public constant MAX_WITHDRAW_FEE = 1000; // 10% address public immutable override prontera; IByalan public override byalan; IERC20 public immutable override want; uint256 public override totalSupply; address public override feeKafra; address public override allocKafra; address public tva; event UpgradeStrategy(address implementation); event SetFeeKafra(address kafra); event SetAllocKafra(address kafra); event SetTVA(address tva); constructor( address _prontera, IByalan _byalan, address _tva ) { prontera = _prontera; byalan = _byalan; want = IERC20(byalan.want()); tva = _tva; } modifier onlyProntera() { require(msg.sender == prontera, "!prontera"); _; } function setFeeKafra(address _feeKafra) external onlyOwner { feeKafra = _feeKafra; emit SetFeeKafra(_feeKafra); } function setAllocKafra(address _allocKafra) external onlyOwner { allocKafra = _allocKafra; emit SetAllocKafra(_allocKafra); } function setTva(address _tva) external { require(tva == msg.sender, "!TVA"); tva = _tva; emit SetTVA(_tva); } /** * @dev It calculates the total underlying value of {token} held by the system. * It takes into account the izlude contract balance, the strategy contract balance * and the balance deployed in other contracts as part of the strategy. */ function balance() public view override returns (uint256) { return want.balanceOf(address(this)) + byalan.balanceOf(); } function calculateWithdrawFee(uint256 amount, address user) public view override returns (uint256) { if (feeKafra == address(0)) { return 0; } return Math.min(IFeeKafra(feeKafra).calculateWithdrawFee(amount, user), _calculateMaxWithdrawFee(amount)); } function _calculateMaxWithdrawFee(uint256 amount) private pure returns (uint256) { return (amount * MAX_WITHDRAW_FEE) / 10000; } function checkAllocation(uint256 amount, address user) private view { require( allocKafra == address(0) || IAllocKafra(allocKafra).canAllocate(amount, byalan.balanceOf(), byalan.balanceOfMasterChef(), user), "capacity limit reached" ); } function deposit(address user, uint256 amount) external override onlyProntera returns (uint256 jellopy) { byalan.beforeDeposit(); uint256 poolBefore = balance(); want.safeTransferFrom(msg.sender, address(this), amount); earn(); checkAllocation(amount, user); if (totalSupply == 0) { jellopy = amount; } else { jellopy = (amount * totalSupply) / poolBefore; } totalSupply += jellopy; } /** * @dev Function to send funds into the strategy and put them to work. It's primarily called * by the izlude's deposit() function. */ function earn() public { want.safeTransfer(address(byalan), want.balanceOf(address(this))); byalan.deposit(); } /** * @param jellopy amount of user's share */ function _withdraw(address user, uint256 jellopy) private returns (uint256) { uint256 r = (balance() * jellopy) / totalSupply; totalSupply -= jellopy; uint256 b = want.balanceOf(address(this)); if (b < r) { uint256 amount = r - b; byalan.withdraw(amount); uint256 _after = want.balanceOf(address(this)); uint256 diff = _after - b; if (diff < amount) { r = b + diff; } } uint256 fee = calculateWithdrawFee(r, user); if (fee > 0) { r -= fee; want.safeTransfer(address(feeKafra), fee); IFeeKafra(feeKafra).distributeWithdrawFee(want, user); } want.safeTransfer(msg.sender, r); return r; } function withdraw(address user, uint256 jellopy) external override onlyProntera returns (uint256) { return _withdraw(user, jellopy); } function upgradeStrategy(address implementation) external { require(tva == msg.sender, "!TVA"); require(address(this) == IByalan(implementation).izlude(), "invalid byalan"); require(want == IERC20(byalan.want()), "invalid byalan want"); // retire old byalan byalan.retireStrategy(); // new byalan byalan = IByalan(implementation); earn(); emit UpgradeStrategy(implementation); } /** * @dev Rescues random funds stuck that the strat can't handle. * @param token address of the token to rescue. */ function inCaseTokensGetStuck(address token) external onlyOwner { require(token != address(want), "!want"); uint256 amount = IERC20(token).balanceOf(address(this)); IERC20(token).safeTransfer(msg.sender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IByalanIsland.sol"; import "./ISailor.sol"; interface IByalan is IByalanIsland, ISailor { function want() external view returns (address); function beforeDeposit() external; function deposit() external; function withdraw(uint256) external; function balanceOf() external view returns (uint256); function balanceOfWant() external view returns (uint256); function balanceOfPool() external view returns (uint256); function balanceOfMasterChef() external view returns (uint256); function pendingRewardTokens() external view returns (IERC20[] memory rewardTokens, uint256[] memory rewardAmounts); function harvest() external; function retireStrategy() external; function panic() external; function pause() external; function unpause() external; function paused() external view returns (bool); }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IFeeKafra { function MAX_FEE() external view returns (uint256); function withdrawFee() external view returns (uint256); function treasuryFeeWithdraw() external view returns (uint256); function kswFeeWithdraw() external view returns (uint256); function calculateWithdrawFee(uint256 _wantAmount, address _user) external view returns (uint256); function distributeWithdrawFee(IERC20 _token, address _fromUser) external; }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IByalan.sol"; interface IIzludeV2 { function totalSupply() external view returns (uint256); function prontera() external view returns (address); function want() external view returns (IERC20); function deposit(address user, uint256 amount) external returns (uint256 jellopy); function withdraw(address user, uint256 jellopy) external returns (uint256); function balance() external view returns (uint256); function byalan() external view returns (IByalan); function feeKafra() external view returns (address); function allocKafra() external view returns (address); function calculateWithdrawFee(uint256 amount, address user) external view returns (uint256); }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; interface IAllocKafra { function MAX_ALLOCATION() external view returns (uint16); function limitAllocation() external view returns (uint16); function canAllocate( uint256 _amount, uint256 _balanceOfWant, uint256 _balanceOfMasterChef, address _user ) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; interface IByalanIsland { function izlude() external view returns (address); }
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; interface ISailor { function MAX_FEE() external view returns (uint256); function totalFee() external view returns (uint256); function callFee() external view returns (uint256); function kswFee() external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"_prontera","type":"address"},{"internalType":"contract IByalan","name":"_byalan","type":"address"},{"internalType":"address","name":"_tva","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"kafra","type":"address"}],"name":"SetAllocKafra","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"kafra","type":"address"}],"name":"SetFeeKafra","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tva","type":"address"}],"name":"SetTVA","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"UpgradeStrategy","type":"event"},{"inputs":[],"name":"MAX_WITHDRAW_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocKafra","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"byalan","outputs":[{"internalType":"contract IByalan","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"calculateWithdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"jellopy","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeKafra","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"inCaseTokensGetStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prontera","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_allocKafra","type":"address"}],"name":"setAllocKafra","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeKafra","type":"address"}],"name":"setFeeKafra","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tva","type":"address"}],"name":"setTva","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tva","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"upgradeStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"jellopy","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b50604051620024ad380380620024ad83398101604081905262000034916200016d565b6200003f3362000104565b6001600160a01b03838116608052600180546001600160a01b031916918416918217905560408051631f1fcd5160e01b81529051631f1fcd5191600480820192602092909190829003018186803b1580156200009a57600080fd5b505afa158015620000af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d59190620001c1565b6001600160a01b0390811660a052600580546001600160a01b0319169290911691909117905550620001e89050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146200016a57600080fd5b50565b6000806000606084860312156200018357600080fd5b8351620001908162000154565b6020850151909350620001a38162000154565b6040850151909250620001b68162000154565b809150509250925092565b600060208284031215620001d457600080fd5b8151620001e18162000154565b9392505050565b60805160a05161224462000269600039600081816101f7015281816106c4015281816109ba01528181610c9201528181610d7e01528181610e1101528181610f3f0152818161194001528181611a9a01528181611b9201528181611bfb0152611c8301526000818161028a0152818161088b01526112ef01526122446000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806398b4aa4e116100d8578063def68a9c1161008c578063f2fde38b11610066578063f2fde38b1461033e578063f3fef3a314610351578063fe43ac581461036457600080fd5b8063def68a9c146102f8578063e792120d1461030b578063e86934f11461032b57600080fd5b8063b69ef8a8116100bd578063b69ef8a8146102df578063d389800f146102e7578063d4b0de2f146102ef57600080fd5b806398b4aa4e146102ac578063ab8450ae146102bf57600080fd5b806347e7ef241161012f578063715018a611610114578063715018a61461025f5780638da5cb5b146102675780638fbe554d1461028557600080fd5b806347e7ef241461022c5780634e2723cf1461023f57600080fd5b80631d32515a116101605780631d32515a146101ad5780631f1fcd51146101f25780633f4360a51461021957600080fd5b806301437e1f1461017c57806318160ddd14610191575b600080fd5b61018f61018a366004611fce565b610377565b005b61019a60025481565b6040519081526020015b60405180910390f35b6005546101cd9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a4565b6101cd7f000000000000000000000000000000000000000000000000000000000000000081565b61018f610227366004611fce565b610477565b61019a61023a366004611feb565b610871565b6003546101cd9073ffffffffffffffffffffffffffffffffffffffff1681565b61018f610a3e565b60005473ffffffffffffffffffffffffffffffffffffffff166101cd565b6101cd7f000000000000000000000000000000000000000000000000000000000000000081565b61018f6102ba366004611fce565b610acb565b6004546101cd9073ffffffffffffffffffffffffffffffffffffffff1681565b61019a610bc1565b61018f610d30565b61019a6103e881565b61018f610306366004611fce565b610ebc565b6001546101cd9073ffffffffffffffffffffffffffffffffffffffff1681565b61019a610339366004612017565b6110ba565b61018f61034c366004611fce565b6111a5565b61019a61035f366004611feb565b6112d5565b61018f610372366004611fce565b611380565b60005473ffffffffffffffffffffffffffffffffffffffff1633146103fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f0908d6b7cedb040fac88a4fdf4f562c83568d8619151630d602926abd0353456906020015b60405180910390a150565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f49060208082526004908201527f2154564100000000000000000000000000000000000000000000000000000000604082015260600190565b8073ffffffffffffffffffffffffffffffffffffffff1663cba098e76040518163ffffffff1660e01b815260040160206040518083038186803b15801561054057600080fd5b505afa158015610554573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105789190612047565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161461060c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f696e76616c6964206279616c616e00000000000000000000000000000000000060448201526064016103f4565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f1fcd516040518163ffffffff1660e01b815260040160206040518083038186803b15801561067457600080fd5b505afa158015610688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ac9190612047565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614610760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f696e76616c6964206279616c616e2077616e740000000000000000000000000060448201526064016103f4565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636ba1b3e06040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156107ca57600080fd5b505af11580156107de573d6000803e3d6000fd5b5050600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85161790555061082b9050610d30565b60405173ffffffffffffffffffffffffffffffffffffffff821681527f621d7c1092af1a73c07b2e2cedaee940f451513a145924d9e1d3e463b47d0c609060200161046c565b60003373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f2170726f6e74657261000000000000000000000000000000000000000000000060448201526064016103f4565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663573fef0a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561097c57600080fd5b505af1158015610990573d6000803e3d6000fd5b50505050600061099e610bc1565b90506109e273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333086611474565b6109ea610d30565b6109f48385611550565b600254610a0357829150610a1f565b8060025484610a129190612093565b610a1c91906120d0565b91505b8160026000828254610a31919061210b565b9091555091949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610abf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b610ac960006117d2565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314610b4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f49060208082526004908201527f2154564100000000000000000000000000000000000000000000000000000000604082015260600190565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f57fb642ac559396252d2360054e92154412763d0fd5e30c00ae3de06a5941c119060200161046c565b600154604080517f722713f7000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163722713f7916004808301926020929190829003018186803b158015610c2c57600080fd5b505afa158015610c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c649190612123565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b158015610ce957600080fd5b505afa158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190612123565b610d2b919061210b565b905090565b6001546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152610e389173ffffffffffffffffffffffffffffffffffffffff908116917f0000000000000000000000000000000000000000000000000000000000000000909116906370a082319060240160206040518083038186803b158015610dc257600080fd5b505afa158015610dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfa9190612123565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169190611847565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ea257600080fd5b505af1158015610eb6573d6000803e3d6000fd5b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f2177616e7400000000000000000000000000000000000000000000000000000060448201526064016103f4565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a082319060240160206040518083038186803b15801561105b57600080fd5b505afa15801561106f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110939190612123565b90506110b673ffffffffffffffffffffffffffffffffffffffff83163383611847565b5050565b60035460009073ffffffffffffffffffffffffffffffffffffffff166110e25750600061119f565b6003546040517fe86934f10000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff848116602483015261119c92169063e86934f19060440160206040518083038186803b15801561115657600080fd5b505afa15801561116a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118e9190612123565b611197856118a2565b6118bd565b90505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b73ffffffffffffffffffffffffffffffffffffffff81166112c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103f4565b6112d2816117d2565b50565b60003373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f2170726f6e74657261000000000000000000000000000000000000000000000060448201526064016103f4565b61119c83836118d3565b60005473ffffffffffffffffffffffffffffffffffffffff163314611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f70e035fc1a2b9d9d0d2412fb437fd1a0f445334d8b41162d91ac978861dcac6a9060200161046c565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052610eb69085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611cb4565b60045473ffffffffffffffffffffffffffffffffffffffff16158061176c575060048054600154604080517f722713f7000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9384169463d9ea4c4a948894169263722713f79281830192602092829003018186803b1580156115e457600080fd5b505afa1580156115f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161c9190612123565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166320d640606040518163ffffffff1660e01b815260040160206040518083038186803b15801561168457600080fd5b505afa158015611698573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bc9190612123565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815260048101939093526024830191909152604482015273ffffffffffffffffffffffffffffffffffffffff8416606482015260840160206040518083038186803b15801561173457600080fd5b505afa158015611748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176c919061213c565b6110b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6361706163697479206c696d697420726561636865640000000000000000000060448201526064016103f4565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405173ffffffffffffffffffffffffffffffffffffffff831660248201526044810182905261189d9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016114ce565b505050565b60006127106118b36103e884612093565b61119f91906120d0565b60008183106118cc578161119c565b5090919050565b600080600254836118e2610bc1565b6118ec9190612093565b6118f691906120d0565b9050826002600082825461190a919061215e565b90915550506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561199757600080fd5b505afa1580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf9190612123565b905081811015611b535760006119e5828461215e565b6001546040517f2e1a7d4d0000000000000000000000000000000000000000000000000000000081526004810183905291925073ffffffffffffffffffffffffffffffffffffffff1690632e1a7d4d90602401600060405180830381600087803b158015611a5257600080fd5b505af1158015611a66573d6000803e3d6000fd5b50506040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152600092507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1691506370a082319060240160206040518083038186803b158015611af257600080fd5b505afa158015611b06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2a9190612123565b90506000611b38848361215e565b905082811015611b4f57611b4c818561210b565b94505b5050505b6000611b5f83876110ba565b90508015611c6957611b71818461215e565b600354909350611bbb9073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116911683611847565b6003546040517f90d63c0a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301528881166024830152909116906390d63c0a90604401600060405180830381600087803b158015611c5057600080fd5b505af1158015611c64573d6000803e3d6000fd5b505050505b611caa73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163385611847565b5090949350505050565b6000611d16826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611dc09092919063ffffffff16565b80519091501561189d5780806020019051810190611d34919061213c565b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103f4565b6060611dcf8484600085611dd9565b90505b9392505050565b606082471015611e6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103f4565b843b611ed3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103f4565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611efc91906121a1565b60006040518083038185875af1925050503d8060008114611f39576040519150601f19603f3d011682016040523d82523d6000602084013e611f3e565b606091505b5091509150611f4e828286611f59565b979650505050505050565b60608315611f68575081611dd2565b825115611f785782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f491906121bd565b73ffffffffffffffffffffffffffffffffffffffff811681146112d257600080fd5b600060208284031215611fe057600080fd5b8135611dd281611fac565b60008060408385031215611ffe57600080fd5b823561200981611fac565b946020939093013593505050565b6000806040838503121561202a57600080fd5b82359150602083013561203c81611fac565b809150509250929050565b60006020828403121561205957600080fd5b8151611dd281611fac565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120cb576120cb612064565b500290565b600082612106577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000821982111561211e5761211e612064565b500190565b60006020828403121561213557600080fd5b5051919050565b60006020828403121561214e57600080fd5b81518015158114611dd257600080fd5b60008282101561217057612170612064565b500390565b60005b83811015612190578181015183820152602001612178565b83811115610eb65750506000910152565b600082516121b3818460208701612175565b9190910192915050565b60208152600082518060208401526121dc816040850160208701612175565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212202d1f9310cf2c877cbbfc7004a226089a9108ec61d85aa2b09cc3b746ff16eb0264736f6c634300080900330000000000000000000000004062400c54ffbe6209c5be655abe6b07b8d10e190000000000000000000000006a57d36eccff3c2efd20f998ee2ab517e98ec69b000000000000000000000000e395605bd95b3a641b9d1266cdb256176419161a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004062400c54ffbe6209c5be655abe6b07b8d10e190000000000000000000000006a57d36eccff3c2efd20f998ee2ab517e98ec69b000000000000000000000000e395605bd95b3a641b9d1266cdb256176419161a
-----Decoded View---------------
Arg [0] : _prontera (address): 0x4062400c54ffbe6209c5be655abe6b07b8d10e19
Arg [1] : _byalan (address): 0x6a57d36eccff3c2efd20f998ee2ab517e98ec69b
Arg [2] : _tva (address): 0xe395605bd95b3a641b9d1266cdb256176419161a
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004062400c54ffbe6209c5be655abe6b07b8d10e19
Arg [1] : 0000000000000000000000006a57d36eccff3c2efd20f998ee2ab517e98ec69b
Arg [2] : 000000000000000000000000e395605bd95b3a641b9d1266cdb256176419161a
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.