¡El código fuente de este contrato está verificado!
Metadatos del Contrato
Compilador
0.7.6+commit.7338295f
Idioma
Solidity
Código Fuente del Contrato
Archivo 1 de 8: Context.sol
// SPDX-License-Identifier: MITpragmasolidity >=0.6.0 <0.8.0;/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (addresspayable) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytesmemory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691returnmsg.data;
}
}
Código Fuente del Contrato
Archivo 2 de 8: IBarn.sol
// SPDX-License-Identifier: Apache-2.0pragmasolidity 0.7.6;pragmaexperimentalABIEncoderV2;import"../libraries/LibBarnStorage.sol";
interfaceIBarn{
// deposit allows a user to add more bond to his staked balancefunctiondeposit(uint256 amount) external;
// withdraw allows a user to withdraw funds if the balance is not lockedfunctionwithdraw(uint256 amount) external;
// lock a user's currently staked balance until timestamp & add the bonus to his voting powerfunctionlock(uint256 timestamp) external;
// delegate allows a user to delegate his voting power to another userfunctiondelegate(address to) external;
// stopDelegate allows a user to take back the delegated voting powerfunctionstopDelegate() external;
// lock the balance of a proposal creator until the voting ends; only callable by DAOfunctionlockCreatorBalance(address user, uint256 timestamp) external;
// balanceOf returns the current BOND balance of a user (bonus not included)functionbalanceOf(address user) externalviewreturns (uint256);
// balanceAtTs returns the amount of BOND that the user currently staked (bonus NOT included)functionbalanceAtTs(address user, uint256 timestamp) externalviewreturns (uint256);
// stakeAtTs returns the Stake object of the user that was valid at `timestamp`functionstakeAtTs(address user, uint256 timestamp) externalviewreturns (LibBarnStorage.Stake memory);
// votingPower returns the voting power (bonus included) + delegated voting power for a user at the current blockfunctionvotingPower(address user) externalviewreturns (uint256);
// votingPowerAtTs returns the voting power (bonus included) + delegated voting power for a user at a point in timefunctionvotingPowerAtTs(address user, uint256 timestamp) externalviewreturns (uint256);
// bondStaked returns the total raw amount of BOND staked at the current blockfunctionbondStaked() externalviewreturns (uint256);
// bondStakedAtTs returns the total raw amount of BOND users have deposited into the contract// it does not include any bonusfunctionbondStakedAtTs(uint256 timestamp) externalviewreturns (uint256);
// delegatedPower returns the total voting power that a user received from other usersfunctiondelegatedPower(address user) externalviewreturns (uint256);
// delegatedPowerAtTs returns the total voting power that a user received from other users at a point in timefunctiondelegatedPowerAtTs(address user, uint256 timestamp) externalviewreturns (uint256);
// multiplierAtTs calculates the multiplier at a given timestamp based on the user's stake a the given timestamp// it includes the decay mechanismfunctionmultiplierAtTs(address user, uint256 timestamp) externalviewreturns (uint256);
// userLockedUntil returns the timestamp until the user's balance is lockedfunctionuserLockedUntil(address user) externalviewreturns (uint256);
// userDidDelegate returns the address to which a user delegated their voting power; address(0) if not delegatedfunctionuserDelegatedTo(address user) externalviewreturns (address);
// bondCirculatingSupply returns the current circulating supply of BONDfunctionbondCirculatingSupply() externalviewreturns (uint256);
}
Código Fuente del Contrato
Archivo 3 de 8: IERC20.sol
// SPDX-License-Identifier: MITpragmasolidity >=0.6.0 <0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (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.
*/functiontransfer(address recipient, uint256 amount) externalreturns (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.
*/functionallowance(address owner, address spender) externalviewreturns (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.
*/functionapprove(address spender, uint256 amount) externalreturns (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.
*/functiontransferFrom(address sender, address recipient, uint256 amount) externalreturns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed 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.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
}
// SPDX-License-Identifier: Apache-2.0pragmasolidity 0.7.6;pragmaexperimentalABIEncoderV2;import"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"../interfaces/IRewards.sol";
libraryLibBarnStorage{
bytes32constant STORAGE_POSITION =keccak256("com.barnbridge.barn.storage");
structCheckpoint {
uint256 timestamp;
uint256 amount;
}
structStake {
uint256 timestamp;
uint256 amount;
uint256 expiryTimestamp;
address delegatedTo;
}
structStorage {
bool initialized;
// mapping of user address to history of Stake objects// every user action creates a new object in the historymapping(address=> Stake[]) userStakeHistory;
// array of bond staked Checkpoint// deposits/withdrawals create a new object in the history (max one per block)
Checkpoint[] bondStakedHistory;
// mapping of user address to history of delegated power// every delegate/stopDelegate call create a new checkpoint (max one per block)mapping(address=> Checkpoint[]) delegatedPowerHistory;
IERC20 bond;
IRewards rewards;
}
functionbarnStorage() internalpurereturns (Storage storage ds) {
bytes32 position = STORAGE_POSITION;
assembly {
ds.slot:= position
}
}
}
Código Fuente del Contrato
Archivo 6 de 8: Ownable.sol
// SPDX-License-Identifier: MITpragmasolidity >=0.6.0 <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.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/constructor () internal{
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/modifieronlyOwner() {
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.
*/functionrenounceOwnership() publicvirtualonlyOwner{
emit OwnershipTransferred(_owner, address(0));
_owner =address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
require(newOwner !=address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
Código Fuente del Contrato
Archivo 7 de 8: Rewards.sol
// SPDX-License-Identifier: Apache-2.0pragmasolidity 0.7.6;pragmaexperimentalABIEncoderV2;import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppelin/contracts/math/SafeMath.sol";
import"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"./interfaces/IBarn.sol";
contractRewardsisOwnable{
usingSafeMathforuint256;
uint256constant decimals =10**18;
structPull {
address source;
uint256 startTs;
uint256 endTs;
uint256 totalDuration;
uint256 totalAmount;
}
Pull public pullFeature;
boolpublic disabled;
uint256public lastPullTs;
uint256public balanceBefore;
uint256public currentMultiplier;
mapping(address=>uint256) public userMultiplier;
mapping(address=>uint256) public owed;
IBarn public barn;
IERC20 public rewardToken;
eventClaim(addressindexed user, uint256 amount);
constructor(address _owner, address _token, address _barn) {
require(_token !=address(0), "reward token must not be 0x0");
require(_barn !=address(0), "barn address must not be 0x0");
transferOwnership(_owner);
rewardToken = IERC20(_token);
barn = IBarn(_barn);
}
// registerUserAction is called by the Barn every time the user does a deposit or withdrawal in order to// account for the changes in reward that the user should get// it updates the amount owed to the user without transferring the fundsfunctionregisterUserAction(address user) public{
require(msg.sender==address(barn), 'only callable by barn');
_calculateOwed(user);
}
// claim calculates the currently owed reward and transfers the funds to the userfunctionclaim() publicreturns (uint256){
_calculateOwed(msg.sender);
uint256 amount = owed[msg.sender];
require(amount >0, "nothing to claim");
owed[msg.sender] =0;
rewardToken.transfer(msg.sender, amount);
// acknowledge the amount that was transferred to the user
ackFunds();
emit Claim(msg.sender, amount);
return amount;
}
// ackFunds checks the difference between the last known balance of `token` and the current one// if it goes up, the multiplier is re-calculated// if it goes down, it only updates the known balancefunctionackFunds() public{
uint256 balanceNow = rewardToken.balanceOf(address(this));
if (balanceNow ==0|| balanceNow <= balanceBefore) {
balanceBefore = balanceNow;
return;
}
uint256 totalStakedBond = barn.bondStaked();
// if there's no bond staked, it doesn't make sense to ackFunds because there's nobody to distribute them to// and the calculation would fail anyways due to division by 0if (totalStakedBond ==0) {
return;
}
uint256 diff = balanceNow.sub(balanceBefore);
uint256 multiplier = currentMultiplier.add(diff.mul(decimals).div(totalStakedBond));
balanceBefore = balanceNow;
currentMultiplier = multiplier;
}
// setupPullToken is used to setup the rewards system; only callable by contract owner// set source to address(0) to disable the functionalityfunctionsetupPullToken(address source, uint256 startTs, uint256 endTs, uint256 amount) public{
require(msg.sender== owner(), "!owner");
require(!disabled, "contract is disabled");
if (pullFeature.source !=address(0)) {
require(source ==address(0), "contract is already set up, source must be 0x0");
disabled =true;
} else {
require(source !=address(0), "contract is not setup, source must be != 0x0");
}
if (source ==address(0)) {
require(startTs ==0, "disable contract: startTs must be 0");
require(endTs ==0, "disable contract: endTs must be 0");
require(amount ==0, "disable contract: amount must be 0");
} else {
require(endTs > startTs, "setup contract: endTs must be greater than startTs");
require(amount >0, "setup contract: amount must be greater than 0");
}
pullFeature.source = source;
pullFeature.startTs = startTs;
pullFeature.endTs = endTs;
pullFeature.totalDuration = endTs.sub(startTs);
pullFeature.totalAmount = amount;
if (lastPullTs < startTs) {
lastPullTs = startTs;
}
}
// setBarn sets the address of the BarnBridge Barn into the state variablefunctionsetBarn(address _barn) public{
require(_barn !=address(0), 'barn address must not be 0x0');
require(msg.sender== owner(), '!owner');
barn = IBarn(_barn);
}
// _pullToken calculates the amount based on the time passed since the last pull relative// to the total amount of time that the pull functionality is active and executes a transferFrom from the// address supplied as `pullTokenFrom`, if enabledfunction_pullToken() internal{
if (
pullFeature.source ==address(0) ||block.timestamp< pullFeature.startTs
) {
return;
}
uint256 timestampCap = pullFeature.endTs;
if (block.timestamp< pullFeature.endTs) {
timestampCap =block.timestamp;
}
if (lastPullTs >= timestampCap) {
return;
}
uint256 timeSinceLastPull = timestampCap.sub(lastPullTs);
uint256 shareToPull = timeSinceLastPull.mul(decimals).div(pullFeature.totalDuration);
uint256 amountToPull = pullFeature.totalAmount.mul(shareToPull).div(decimals);
lastPullTs =block.timestamp;
rewardToken.transferFrom(pullFeature.source, address(this), amountToPull);
}
// _calculateOwed calculates and updates the total amount that is owed to an user and updates the user's multiplier// to the current value// it automatically attempts to pull the token from the source and acknowledge the fundsfunction_calculateOwed(address user) internal{
_pullToken();
ackFunds();
uint256 reward = _userPendingReward(user);
owed[user] = owed[user].add(reward);
userMultiplier[user] = currentMultiplier;
}
// _userPendingReward calculates the reward that should be based on the current multiplier / anything that's not included in the `owed[user]` value// it does not represent the entire reward that's due to the user unless added on top of `owed[user]`function_userPendingReward(address user) internalviewreturns (uint256) {
uint256 multiplier = currentMultiplier.sub(userMultiplier[user]);
return barn.balanceOf(user).mul(multiplier).div(decimals);
}
}
Código Fuente del Contrato
Archivo 8 de 8: SafeMath.sol
// SPDX-License-Identifier: MITpragmasolidity >=0.6.0 <0.8.0;/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/librarySafeMath{
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontryAdd(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontrySub(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontryMul(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the// benefit is lost if 'b' is also tested.// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522if (a ==0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/functiontryDiv(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
if (b ==0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/functiontryMod(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
if (b ==0) return (false, 0);
return (true, a % b);
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/functionadd(uint256 a, uint256 b) internalpurereturns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/functionsub(uint256 a, uint256 b) internalpurereturns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/functionmul(uint256 a, uint256 b) internalpurereturns (uint256) {
if (a ==0) return0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functiondiv(uint256 a, uint256 b) internalpurereturns (uint256) {
require(b >0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functionmod(uint256 a, uint256 b) internalpurereturns (uint256) {
require(b >0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/functionsub(uint256 a, uint256 b, stringmemory errorMessage) internalpurereturns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functiondiv(uint256 a, uint256 b, stringmemory errorMessage) internalpurereturns (uint256) {
require(b >0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functionmod(uint256 a, uint256 b, stringmemory errorMessage) internalpurereturns (uint256) {
require(b >0, errorMessage);
return a % b;
}
}