Source Code
Overview
GLMR Balance
GLMR Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Beam Chef V3 | 5603048 | 699 days ago | IN | 0 GLMR | 0.00589339 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x9AF01948...E788DC325 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
YieldBooster
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "./interfaces/IstGlintUsage.sol";
import "./interfaces/IBeamChefV3.sol";
/**
* @title YieldBooster
* @dev This contract allows users to allocate and deallocate their stGlint tokens to boost the pools reward rate.
*/
contract YieldBooster is Ownable, ReentrancyGuard, IstGlintUsage {
using SafeERC20 for IERC20;
/**
* @dev Struct to hold user information.
*/
struct UserInfo {
uint256 poolId; // poolId of the staking token
uint256 votePower; // vote power of the user
}
IBeamChefV3 public beamChefV3;
/**
* @dev Mapping to hold user information.
*/
mapping(address => UserInfo) public userInfo;
/**
* @dev Address of the stGlint contract.
*/
address public immutable stGlint;
/**
* @dev Mapping to hold user's stGlint allocation.
*/
mapping(address => uint256) public usersAllocation;
/**
* @dev Total stGlint allocation of the contract.
*/
uint256 public totalAllocation;
/**
* @dev Mapping to check if a user has voted.
*/
mapping(address => bool) public voted;
/**
* @dev Contract constructor that sets the stGlint contract address.
*/
constructor(address _stGlint) {
require(_stGlint != address(0), "zero address");
stGlint = _stGlint;
}
/**
* @dev Function to prevent accepting Glmr.
*/
receive() external payable {
revert("YieldBooster: Glmr not accepted");
}
/********************************************/
/****************** EVENTS ******************/
/********************************************/
/**
* @dev Event emitted when a user's allocation is updated.
*/
event UserUpdated(
address indexed user,
uint256 previousBalance,
uint256 newBalance
);
/**
* @dev Checks if caller is the stGlint contract
*/
modifier stGlintTokenOnly() {
require(
msg.sender == stGlint,
"stGlintTokenOnly: caller should be stGlint"
);
_;
}
/*****************************************************************/
/****************** OWNABLE FUNCTIONS ******************/
/*****************************************************************/
/**
* @dev Allocates "userAddress" user's "amount" of stGlint to this farmbooster.
* Can only be called by stGlint contract, which is trusted to verify amounts.
* data should contain pool id.
*/
function allocate(
address userAddress,
uint256 amount,
bytes calldata data
) external override nonReentrant stGlintTokenOnly {
uint256 poolId = abi.decode(data, (uint256));
require(beamChefV3.isPoolVoteable(poolId), "pool is not voteable");
UserInfo storage user = userInfo[userAddress];
if (!voted[userAddress]) {
voted[userAddress] = true;
uint256 newUserAllocation = usersAllocation[userAddress] + amount;
uint256 newTotalAllocation = totalAllocation + amount;
user.poolId = poolId;
user.votePower = newUserAllocation;
_updateUser(userAddress, newUserAllocation, newTotalAllocation);
beamChefV3.votePool(userAddress, poolId);
} else {
require(user.poolId == poolId, "allocate: invalid poolId");
uint256 newUserAllocation = usersAllocation[userAddress] + amount;
uint256 newTotalAllocation = totalAllocation + amount;
user.votePower = newUserAllocation;
_updateUser(userAddress, newUserAllocation, newTotalAllocation);
beamChefV3.updateVotePool(userAddress, newUserAllocation, poolId);
}
}
/**
* @dev Deallocates "userAddress" user's "amount" of stGlint allocation from this farmbooster.
* Can only be called by stGlint contract, which is trusted to verify amounts.
* data should contain pool id.
*/
function deallocate(
address userAddress,
uint256 amount,
bytes calldata data
) external override nonReentrant stGlintTokenOnly {
require(voted[userAddress], "already voted");
UserInfo storage user = userInfo[userAddress];
uint256 poolId = abi.decode(data, (uint256));
require(user.poolId == poolId, "deallocate: invalid poolId");
uint256 newUserAllocation = usersAllocation[userAddress] - amount;
uint256 newTotalAllocation = totalAllocation - amount;
user.votePower = newUserAllocation;
if (newUserAllocation == 0) {
voted[userAddress] = false;
user.poolId = 0;
beamChefV3.unVotePool(userAddress, poolId);
} else {
beamChefV3.updateVotePool(userAddress, newUserAllocation, poolId);
}
_updateUser(userAddress, newUserAllocation, newTotalAllocation);
}
/********************************************************/
/****************** INTERNAL FUNCTIONS ******************/
/********************************************************/
/**
* @dev Updates "userAddress" user's and total allocations for each distributed token.
*/
function _updateUser(
address userAddress,
uint256 newUserAllocation,
uint256 newTotalAllocation
) internal {
uint256 previousUserAllocation = usersAllocation[userAddress];
usersAllocation[userAddress] = newUserAllocation;
totalAllocation = newTotalAllocation;
emit UserUpdated(
userAddress,
previousUserAllocation,
newUserAllocation
);
}
/**
* @dev Returns the voting power of a user.
*/
function getVotingPower(
address userAddress
) external view returns (uint256) {
return userInfo[userAddress].votePower;
}
/**
* @dev Sets the BeamChefV3 contract.
*/
function setBeamChefV3(IBeamChefV3 _beamChefV3) external onlyOwner {
beamChefV3 = _beamChefV3;
}
/**
* @dev Checks if a user has voted.
*/
function hasUserVoted(address userAddress) external view returns (bool) {
return voted[userAddress];
}
}// 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 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @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 (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
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
// 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 (utils/structs/EnumerableSet.sol)
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
return _values(set._inner);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
interface IBeamChefV3 {
function votePool(address _user, uint256 _pid) external;
function unVotePool(address _user, uint256 _pid) external;
function updateVotePool(
address _user,
uint256 amount,
uint256 _pid
) external;
function isPoolVoteable(uint256 _pid) external view returns (bool);
function votePoolMarket(
address _user,
uint256 _pid,
uint256 _amount
) external;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
interface IstGlintUsage {
function allocate(address userAddress, uint256 amount, bytes calldata data) external;
function deallocate(address userAddress, uint256 amount, bytes calldata data) external;
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_stGlint","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"UserUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beamChefV3","outputs":[{"internalType":"contract IBeamChefV3","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"deallocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getVotingPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"hasUserVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBeamChefV3","name":"_beamChefV3","type":"address"}],"name":"setBeamChefV3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stGlint","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocation","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":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"uint256","name":"votePower","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usersAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"voted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x60a060405234801561001057600080fd5b5060405161102738038061102783398101604081905261002f916100e6565b61003833610096565b600180556001600160a01b0381166100855760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015260640160405180910390fd5b6001600160a01b0316608052610116565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100f857600080fd5b81516001600160a01b038116811461010f57600080fd5b9392505050565b608051610ee861013f600039600081816101da0152818161040c01526108810152610ee86000f3fe6080604052600436106100e15760003560e01c806379203dc41161007f578063aec2ccae11610059578063aec2ccae146102f4578063bb4d443614610324578063c4d3e0831461035d578063f2fde38b1461038a57600080fd5b806379203dc4146102695780637fabe80a1461028d5780638da5cb5b146102d657600080fd5b806335034c85116100bb57806335034c85146101c8578063549230c91461021457806369b45b1714610234578063715018a61461025457600080fd5b80631959a002146101385780631c75e36914610186578063257f561a146101a857600080fd5b366101335760405162461bcd60e51b815260206004820152601f60248201527f5969656c64426f6f737465723a20476c6d72206e6f742061636365707465640060448201526064015b60405180910390fd5b600080fd5b34801561014457600080fd5b5061016c610153366004610d6f565b6003602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610d93565b6103aa565b005b3480156101b457600080fd5b506101a66101c3366004610d6f565b610796565b3480156101d457600080fd5b506101fc7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161017d565b34801561022057600080fd5b506101a661022f366004610d93565b61081f565b34801561024057600080fd5b506002546101fc906001600160a01b031681565b34801561026057600080fd5b506101a6610b50565b34801561027557600080fd5b5061027f60055481565b60405190815260200161017d565b34801561029957600080fd5b506102c66102a8366004610d6f565b6001600160a01b031660009081526006602052604090205460ff1690565b604051901515815260200161017d565b3480156102e257600080fd5b506000546001600160a01b03166101fc565b34801561030057600080fd5b506102c661030f366004610d6f565b60066020526000908152604090205460ff1681565b34801561033057600080fd5b5061027f61033f366004610d6f565b6001600160a01b031660009081526003602052604090206001015490565b34801561036957600080fd5b5061027f610378366004610d6f565b60046020526000908152604090205481565b34801561039657600080fd5b506101a66103a5366004610d6f565b610bb6565b6002600154036103fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161012a565b6002600155336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461048c5760405162461bcd60e51b815260206004820152602a60248201527f7374476c696e74546f6b656e4f6e6c793a2063616c6c65722073686f756c64206044820152691899481cdd11db1a5b9d60b21b606482015260840161012a565b600061049a82840184610e1c565b6002546040517fb63ccfe5000000000000000000000000000000000000000000000000000000008152600481018390529192506001600160a01b03169063b63ccfe590602401602060405180830381865afa1580156104fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105219190610e35565b61056d5760405162461bcd60e51b815260206004820152601460248201527f706f6f6c206973206e6f7420766f746561626c65000000000000000000000000604482015260640161012a565b6001600160a01b038516600090815260036020908152604080832060069092529091205460ff16610680576001600160a01b0386166000908152600660209081526040808320805460ff1916600117905560049091528120546105d1908790610e86565b90506000866005546105e39190610e86565b8484556001840183905590506105fa888383610c98565b6002546040517fced75c1c0000000000000000000000000000000000000000000000000000000081526001600160a01b038a81166004830152602482018790529091169063ced75c1c90604401600060405180830381600087803b15801561066157600080fd5b505af1158015610675573d6000803e3d6000fd5b50505050505061078a565b805482146106d05760405162461bcd60e51b815260206004820152601860248201527f616c6c6f636174653a20696e76616c696420706f6f6c49640000000000000000604482015260640161012a565b6001600160a01b0386166000908152600460205260408120546106f4908790610e86565b90506000866005546107069190610e86565b60018401839055905061071a888383610c98565b6002546040516328b35c2160e21b81526001600160a01b038a8116600483015260248201859052604482018790529091169063a2cd708490606401600060405180830381600087803b15801561076f57600080fd5b505af1158015610783573d6000803e3d6000fd5b5050505050505b50506001805550505050565b6000546001600160a01b031633146107f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6002600154036108715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161012a565b6002600155336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109015760405162461bcd60e51b815260206004820152602a60248201527f7374476c696e74546f6b656e4f6e6c793a2063616c6c65722073686f756c64206044820152691899481cdd11db1a5b9d60b21b606482015260840161012a565b6001600160a01b03841660009081526006602052604090205460ff166109695760405162461bcd60e51b815260206004820152600d60248201527f616c726561647920766f74656400000000000000000000000000000000000000604482015260640161012a565b6001600160a01b03841660009081526003602052604081209061098e83850185610e1c565b825490915081146109e15760405162461bcd60e51b815260206004820152601a60248201527f6465616c6c6f636174653a20696e76616c696420706f6f6c4964000000000000604482015260640161012a565b6001600160a01b038616600090815260046020526040812054610a05908790610e9f565b9050600086600554610a179190610e9f565b6001850183905590506000829003610ac9576001600160a01b03888116600081815260066020526040808220805460ff1916905590875560025490517f50d4a401000000000000000000000000000000000000000000000000000000008152600481019290925260248201869052909116906350d4a40190604401600060405180830381600087803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b50505050610b37565b6002546040516328b35c2160e21b81526001600160a01b038a8116600483015260248201859052604482018690529091169063a2cd708490606401600060405180830381600087803b158015610b1e57600080fd5b505af1158015610b32573d6000803e3d6000fd5b505050505b610b42888383610c98565b505060018055505050505050565b6000546001600160a01b03163314610baa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b610bb46000610cfd565b565b6000546001600160a01b03163314610c105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b6001600160a01b038116610c8c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161012a565b610c9581610cfd565b50565b6001600160a01b0383166000818152600460209081526040918290208054908690556005859055825181815291820186905292917f97ce9d7086176d6da45e4e7999788176e2629a7591ffe505b0c1b13fe8052cc6910160405180910390a250505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610c9557600080fd5b600060208284031215610d8157600080fd5b8135610d8c81610d5a565b9392505050565b60008060008060608587031215610da957600080fd5b8435610db481610d5a565b935060208501359250604085013567ffffffffffffffff80821115610dd857600080fd5b818701915087601f830112610dec57600080fd5b813581811115610dfb57600080fd5b886020828501011115610e0d57600080fd5b95989497505060200194505050565b600060208284031215610e2e57600080fd5b5035919050565b600060208284031215610e4757600080fd5b81518015158114610d8c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610e9957610e99610e57565b92915050565b81810381811115610e9957610e99610e5756fea26469706673582212204847ae20a65789820c9751db0240ec1df12bd34045c837b327765f79362c232764736f6c6343000813003300000000000000000000000063d43d0edda7de4b5ed9b2f2aa855f81fbd71697
Deployed Bytecode
0x6080604052600436106100e15760003560e01c806379203dc41161007f578063aec2ccae11610059578063aec2ccae146102f4578063bb4d443614610324578063c4d3e0831461035d578063f2fde38b1461038a57600080fd5b806379203dc4146102695780637fabe80a1461028d5780638da5cb5b146102d657600080fd5b806335034c85116100bb57806335034c85146101c8578063549230c91461021457806369b45b1714610234578063715018a61461025457600080fd5b80631959a002146101385780631c75e36914610186578063257f561a146101a857600080fd5b366101335760405162461bcd60e51b815260206004820152601f60248201527f5969656c64426f6f737465723a20476c6d72206e6f742061636365707465640060448201526064015b60405180910390fd5b600080fd5b34801561014457600080fd5b5061016c610153366004610d6f565b6003602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610d93565b6103aa565b005b3480156101b457600080fd5b506101a66101c3366004610d6f565b610796565b3480156101d457600080fd5b506101fc7f00000000000000000000000063d43d0edda7de4b5ed9b2f2aa855f81fbd7169781565b6040516001600160a01b03909116815260200161017d565b34801561022057600080fd5b506101a661022f366004610d93565b61081f565b34801561024057600080fd5b506002546101fc906001600160a01b031681565b34801561026057600080fd5b506101a6610b50565b34801561027557600080fd5b5061027f60055481565b60405190815260200161017d565b34801561029957600080fd5b506102c66102a8366004610d6f565b6001600160a01b031660009081526006602052604090205460ff1690565b604051901515815260200161017d565b3480156102e257600080fd5b506000546001600160a01b03166101fc565b34801561030057600080fd5b506102c661030f366004610d6f565b60066020526000908152604090205460ff1681565b34801561033057600080fd5b5061027f61033f366004610d6f565b6001600160a01b031660009081526003602052604090206001015490565b34801561036957600080fd5b5061027f610378366004610d6f565b60046020526000908152604090205481565b34801561039657600080fd5b506101a66103a5366004610d6f565b610bb6565b6002600154036103fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161012a565b6002600155336001600160a01b037f00000000000000000000000063d43d0edda7de4b5ed9b2f2aa855f81fbd71697161461048c5760405162461bcd60e51b815260206004820152602a60248201527f7374476c696e74546f6b656e4f6e6c793a2063616c6c65722073686f756c64206044820152691899481cdd11db1a5b9d60b21b606482015260840161012a565b600061049a82840184610e1c565b6002546040517fb63ccfe5000000000000000000000000000000000000000000000000000000008152600481018390529192506001600160a01b03169063b63ccfe590602401602060405180830381865afa1580156104fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105219190610e35565b61056d5760405162461bcd60e51b815260206004820152601460248201527f706f6f6c206973206e6f7420766f746561626c65000000000000000000000000604482015260640161012a565b6001600160a01b038516600090815260036020908152604080832060069092529091205460ff16610680576001600160a01b0386166000908152600660209081526040808320805460ff1916600117905560049091528120546105d1908790610e86565b90506000866005546105e39190610e86565b8484556001840183905590506105fa888383610c98565b6002546040517fced75c1c0000000000000000000000000000000000000000000000000000000081526001600160a01b038a81166004830152602482018790529091169063ced75c1c90604401600060405180830381600087803b15801561066157600080fd5b505af1158015610675573d6000803e3d6000fd5b50505050505061078a565b805482146106d05760405162461bcd60e51b815260206004820152601860248201527f616c6c6f636174653a20696e76616c696420706f6f6c49640000000000000000604482015260640161012a565b6001600160a01b0386166000908152600460205260408120546106f4908790610e86565b90506000866005546107069190610e86565b60018401839055905061071a888383610c98565b6002546040516328b35c2160e21b81526001600160a01b038a8116600483015260248201859052604482018790529091169063a2cd708490606401600060405180830381600087803b15801561076f57600080fd5b505af1158015610783573d6000803e3d6000fd5b5050505050505b50506001805550505050565b6000546001600160a01b031633146107f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6002600154036108715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161012a565b6002600155336001600160a01b037f00000000000000000000000063d43d0edda7de4b5ed9b2f2aa855f81fbd7169716146109015760405162461bcd60e51b815260206004820152602a60248201527f7374476c696e74546f6b656e4f6e6c793a2063616c6c65722073686f756c64206044820152691899481cdd11db1a5b9d60b21b606482015260840161012a565b6001600160a01b03841660009081526006602052604090205460ff166109695760405162461bcd60e51b815260206004820152600d60248201527f616c726561647920766f74656400000000000000000000000000000000000000604482015260640161012a565b6001600160a01b03841660009081526003602052604081209061098e83850185610e1c565b825490915081146109e15760405162461bcd60e51b815260206004820152601a60248201527f6465616c6c6f636174653a20696e76616c696420706f6f6c4964000000000000604482015260640161012a565b6001600160a01b038616600090815260046020526040812054610a05908790610e9f565b9050600086600554610a179190610e9f565b6001850183905590506000829003610ac9576001600160a01b03888116600081815260066020526040808220805460ff1916905590875560025490517f50d4a401000000000000000000000000000000000000000000000000000000008152600481019290925260248201869052909116906350d4a40190604401600060405180830381600087803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b50505050610b37565b6002546040516328b35c2160e21b81526001600160a01b038a8116600483015260248201859052604482018690529091169063a2cd708490606401600060405180830381600087803b158015610b1e57600080fd5b505af1158015610b32573d6000803e3d6000fd5b505050505b610b42888383610c98565b505060018055505050505050565b6000546001600160a01b03163314610baa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b610bb46000610cfd565b565b6000546001600160a01b03163314610c105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012a565b6001600160a01b038116610c8c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161012a565b610c9581610cfd565b50565b6001600160a01b0383166000818152600460209081526040918290208054908690556005859055825181815291820186905292917f97ce9d7086176d6da45e4e7999788176e2629a7591ffe505b0c1b13fe8052cc6910160405180910390a250505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610c9557600080fd5b600060208284031215610d8157600080fd5b8135610d8c81610d5a565b9392505050565b60008060008060608587031215610da957600080fd5b8435610db481610d5a565b935060208501359250604085013567ffffffffffffffff80821115610dd857600080fd5b818701915087601f830112610dec57600080fd5b813581811115610dfb57600080fd5b886020828501011115610e0d57600080fd5b95989497505060200194505050565b600060208284031215610e2e57600080fd5b5035919050565b600060208284031215610e4757600080fd5b81518015158114610d8c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610e9957610e99610e57565b92915050565b81810381811115610e9957610e99610e5756fea26469706673582212204847ae20a65789820c9751db0240ec1df12bd34045c837b327765f79362c232764736f6c63430008130033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.