contract_name stringlengths 1 61 | file_path stringlengths 5 50.4k | contract_address stringlengths 42 42 | language stringclasses 1
value | class_name stringlengths 1 61 | class_code stringlengths 4 330k | class_documentation stringlengths 0 29.1k | class_documentation_type stringclasses 6
values | func_name stringlengths 0 62 | func_code stringlengths 1 303k | func_documentation stringlengths 2 14.9k | func_documentation_type stringclasses 4
values | compiler_version stringlengths 15 42 | license_type stringclasses 14
values | swarm_source stringlengths 0 71 | meta dict | __index_level_0__ int64 0 60.4k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setPriceOracle | function _setPriceOracle(address _newOracle) external override onlyOwner {
address _oldOracle = priceOracle;
require(
_newOracle != address(0) && _newOracle != _oldOracle,
"Oracle address invalid"
);
priceOracle = _newOracle;
emit NewPriceOracle(_oldOracle, _newOracle);
}
| /**
* @notice Sets price oracle
* @dev Admin function to set price oracle
* @param _newOracle New oracle contract
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
7145,
7489
]
} | 13,300 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setCloseFactor | function _setCloseFactor(uint256 _newCloseFactorMantissa)
external
override
onlyOwner
{
require(
_newCloseFactorMantissa >= closeFactorMinMantissa &&
_newCloseFactorMantissa <= closeFactorMaxMantissa,
"Close factor invalid"
);
uint256 _oldCloseFactorMantissa = closeF... | /**
* @notice Sets the closeFactor used when liquidating borrows
* @dev Admin function to set closeFactor
* @param _newCloseFactorMantissa New close factor, scaled by 1e18
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
7690,
8208
]
} | 13,301 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setLiquidationIncentive | function _setLiquidationIncentive(uint256 _newLiquidationIncentiveMantissa)
external
override
onlyOwner
{
require(
_newLiquidationIncentiveMantissa >=
liquidationIncentiveMinMantissa &&
_newLiquidationIncentiveMantissa <=
liquidationIncentiveMaxMantissa,
... | /**
* @notice Sets liquidationIncentive
* @dev Admin function to set liquidationIncentive
* @param _newLiquidationIncentiveMantissa New liquidationIncentive scaled by 1e18
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
8409,
9120
]
} | 13,302 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setCollateralFactor | function _setCollateralFactor(
address _iToken,
uint256 _newCollateralFactorMantissa
) external override onlyOwner {
_checkiTokenListed(_iToken);
require(
_newCollateralFactorMantissa <= collateralFactorMaxMantissa,
"Collateral factor invalid"
);
// Its value will be taken into... | /**
* @notice Sets the collateralFactor for a iToken
* @dev Admin function to set collateralFactor for a iToken
* @param _iToken The token to set the factor on
* @param _newCollateralFactorMantissa The new collateral factor, scaled by 1e18
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
9394,
10396
]
} | 13,303 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setBorrowFactor | function _setBorrowFactor(address _iToken, uint256 _newBorrowFactorMantissa)
external
override
onlyOwner
{
_checkiTokenListed(_iToken);
require(
_newBorrowFactorMantissa > 0 &&
_newBorrowFactorMantissa <= borrowFactorMaxMantissa,
"Borrow factor invalid"
);
// It... | /**
* @notice Sets the borrowFactor for a iToken
* @dev Admin function to set borrowFactor for a iToken
* @param _iToken The token to set the factor on
* @param _newBorrowFactorMantissa The new borrow factor, scaled by 1e18
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
10654,
11658
]
} | 13,304 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setBorrowCapacity | function _setBorrowCapacity(address _iToken, uint256 _newBorrowCapacity)
external
override
onlyOwner
{
_checkiTokenListed(_iToken);
Market storage _market = markets[_iToken];
uint256 oldBorrowCapacity = _market.borrowCapacity;
_market.borrowCapacity = _newBorrowCapacity;
emit NewBorrow... | /**
* @notice Sets the borrowCapacity for a iToken
* @dev Admin function to set borrowCapacity for a iToken
* @param _iToken The token to set the capacity on
* @param _newBorrowCapacity The new borrow capacity
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
11902,
12325
]
} | 13,305 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setSupplyCapacity | function _setSupplyCapacity(address _iToken, uint256 _newSupplyCapacity)
external
override
onlyOwner
{
_checkiTokenListed(_iToken);
Market storage _market = markets[_iToken];
uint256 oldSupplyCapacity = _market.supplyCapacity;
_market.supplyCapacity = _newSupplyCapacity;
emit NewSupply... | /**
* @notice Sets the supplyCapacity for a iToken
* @dev Admin function to set supplyCapacity for a iToken
* @param _iToken The token to set the capacity on
* @param _newSupplyCapacity The new supply capacity
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
12569,
12992
]
} | 13,306 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setPauseGuardian | function _setPauseGuardian(address _newPauseGuardian)
external
override
onlyOwner
{
address _oldPauseGuardian = pauseGuardian;
require(
_newPauseGuardian != address(0) &&
_newPauseGuardian != _oldPauseGuardian,
"Pause guardian address invalid"
);
pauseGuardian =... | /**
* @notice Sets the pauseGuardian
* @dev Admin function to set pauseGuardian
* @param _newPauseGuardian The new pause guardian
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
13151,
13614
]
} | 13,307 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setAllMintPaused | function _setAllMintPaused(bool _paused)
external
override
checkPauser(_paused)
{
EnumerableSetUpgradeable.AddressSet storage _iTokens = iTokens;
uint256 _len = _iTokens.length();
for (uint256 i = 0; i < _len; i++) {
_setMintPausedInternal(_iTokens.at(i), _paused);
}
}
| /**
* @notice pause/unpause mint() for all iTokens
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
13805,
14155
]
} | 13,308 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setMintPaused | function _setMintPaused(address _iToken, bool _paused)
external
override
checkPauser(_paused)
{
_checkiTokenListed(_iToken);
_setMintPausedInternal(_iToken, _paused);
}
| /**
* @notice pause/unpause mint() for the iToken
* @dev Admin function, only owner and pauseGuardian can call this
* @param _iToken The iToken to pause/unpause
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
14395,
14616
]
} | 13,309 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setAllRedeemPaused | function _setAllRedeemPaused(bool _paused)
external
override
checkPauser(_paused)
{
EnumerableSetUpgradeable.AddressSet storage _iTokens = iTokens;
uint256 _len = _iTokens.length();
for (uint256 i = 0; i < _len; i++) {
_setRedeemPausedInternal(_iTokens.at(i), _paused);
}
}
| /**
* @notice pause/unpause redeem() for all iTokens
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
14984,
15338
]
} | 13,310 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setRedeemPaused | function _setRedeemPaused(address _iToken, bool _paused)
external
override
checkPauser(_paused)
{
_checkiTokenListed(_iToken);
_setRedeemPausedInternal(_iToken, _paused);
}
| /**
* @notice pause/unpause redeem() for the iToken
* @dev Admin function, only owner and pauseGuardian can call this
* @param _iToken The iToken to pause/unpause
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
15580,
15805
]
} | 13,311 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setAllBorrowPaused | function _setAllBorrowPaused(bool _paused)
external
override
checkPauser(_paused)
{
EnumerableSetUpgradeable.AddressSet storage _iTokens = iTokens;
uint256 _len = _iTokens.length();
for (uint256 i = 0; i < _len; i++) {
_setBorrowPausedInternal(_iTokens.at(i), _paused);
}
}
| /**
* @notice pause/unpause borrow() for all iTokens
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
16179,
16533
]
} | 13,312 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setBorrowPaused | function _setBorrowPaused(address _iToken, bool _paused)
external
override
checkPauser(_paused)
{
_checkiTokenListed(_iToken);
_setBorrowPausedInternal(_iToken, _paused);
}
| /**
* @notice pause/unpause borrow() for the iToken
* @dev Admin function, only owner and pauseGuardian can call this
* @param _iToken The iToken to pause/unpause
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
16775,
17000
]
} | 13,313 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setTransferPaused | function _setTransferPaused(bool _paused)
external
override
checkPauser(_paused)
{
_setTransferPausedInternal(_paused);
}
| /**
* @notice pause/unpause global transfer()
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
17367,
17532
]
} | 13,314 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setSeizePaused | function _setSeizePaused(bool _paused)
external
override
checkPauser(_paused)
{
_setSeizePausedInternal(_paused);
}
| /**
* @notice pause/unpause global seize()
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
17859,
18018
]
} | 13,315 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setiTokenPaused | function _setiTokenPaused(address _iToken, bool _paused)
external
override
checkPauser(_paused)
{
_checkiTokenListed(_iToken);
_setiTokenPausedInternal(_iToken, _paused);
}
| /**
* @notice pause/unpause all actions iToken, including mint/redeem/borrow
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
18370,
18595
]
} | 13,316 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setProtocolPaused | function _setProtocolPaused(bool _paused)
external
override
checkPauser(_paused)
{
EnumerableSetUpgradeable.AddressSet storage _iTokens = iTokens;
uint256 _len = _iTokens.length();
for (uint256 i = 0; i < _len; i++) {
address _iToken = _iTokens.at(i);
_setiTokenPausedInternal(_... | /**
* @notice pause/unpause entire protocol, including mint/redeem/borrow/seize/transfer
* @dev Admin function, only owner and pauseGuardian can call this
* @param _paused whether to pause or unpause
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
19216,
19697
]
} | 13,317 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _setRewardDistributor | function _setRewardDistributor(address _newRewardDistributor)
external
override
onlyOwner
{
address _oldRewardDistributor = rewardDistributor;
require(
_newRewardDistributor != address(0) &&
_newRewardDistributor != _oldRewardDistributor,
"Reward Distributor address inval... | /**
* @notice Sets Reward Distributor
* @dev Admin function to set reward distributor
* @param _newRewardDistributor new reward distributor
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
19866,
20379
]
} | 13,318 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeMint | function beforeMint(
address _iToken,
address _minter,
uint256 _mintAmount
) external override {
_checkiTokenListed(_iToken);
Market storage _market = markets[_iToken];
require(!_market.mintPaused, "Token mint has been paused");
// Check the iToken's supply capacity, -1 means no limit
... | /**
* @notice Hook function before iToken `mint()`
* Checks if the account should be allowed to mint the given iToken
* Will `revert()` if any check fails
* @param _iToken The iToken to check the mint against
* @param _minter The account which would get the minted tokens
* @param _mintAmount The amount of underly... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
20885,
21905
]
} | 13,319 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterMint | function afterMint(
address _iToken,
address _minter,
uint256 _mintAmount,
uint256 _mintedAmount
) external override {
_iToken;
_minter;
_mintAmount;
_mintedAmount;
}
| /**
* @notice Hook function after iToken `mint()`
* Will `revert()` if any operation fails
* @param _iToken The iToken being minted
* @param _minter The account which would get the minted tokens
* @param _mintAmount The amount of underlying being minted to iToken
* @param _mintedAmount The amount of iToken being ... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
22270,
22512
]
} | 13,320 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeRedeem | function beforeRedeem(
address _iToken,
address _redeemer,
uint256 _redeemAmount
) external override {
// _redeemAllowed below will check whether _iToken is listed
require(!markets[_iToken].redeemPaused, "Token redeem has been paused");
_redeemAllowed(_iToken, _redeemer, _redeemAmount);
/... | /**
* @notice Hook function before iToken `redeem()`
* Checks if the account should be allowed to redeem the given iToken
* Will `revert()` if any check fails
* @param _iToken The iToken to check the redeem against
* @param _redeemer The account which would redeem iToken
* @param _redeemAmount The amount of iToke... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
22882,
23578
]
} | 13,321 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterRedeem | function afterRedeem(
address _iToken,
address _redeemer,
uint256 _redeemAmount,
uint256 _redeemedUnderlying
) external override {
_iToken;
_redeemer;
_redeemAmount;
_redeemedUnderlying;
}
| /**
* @notice Hook function after iToken `redeem()`
* Will `revert()` if any operation fails
* @param _iToken The iToken being redeemed
* @param _redeemer The account which redeemed iToken
* @param _redeemAmount The amount of iToken being redeemed
* @param _redeemedUnderlying The amount of underlying being redee... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
23940,
24204
]
} | 13,322 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeBorrow | function beforeBorrow(
address _iToken,
address _borrower,
uint256 _borrowAmount
) external override {
_checkiTokenListed(_iToken);
Market storage _market = markets[_iToken];
require(!_market.borrowPaused, "Token borrow has been paused");
if (!hasBorrowed(_borrower, _iToken)) {
// ... | /**
* @notice Hook function before iToken `borrow()`
* Checks if the account should be allowed to borrow the given iToken
* Will `revert()` if any check fails
* @param _iToken The iToken to check the borrow against
* @param _borrower The account which would borrow iToken
* @param _borrowAmount The amount of under... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
24578,
26081
]
} | 13,323 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterBorrow | function afterBorrow(
address _iToken,
address _borrower,
uint256 _borrowedAmount
) external override {
_iToken;
_borrower;
_borrowedAmount;
}
| /**
* @notice Hook function after iToken `borrow()`
* Will `revert()` if any operation fails
* @param _iToken The iToken being borrewd
* @param _borrower The account which borrowed iToken
* @param _borrowedAmount The amount of underlying being borrowed
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
26374,
26576
]
} | 13,324 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeRepayBorrow | function beforeRepayBorrow(
address _iToken,
address _payer,
address _borrower,
uint256 _repayAmount
) external override {
_checkiTokenListed(_iToken);
// Update the Reward Distribution Borrow state and distribute reward to borrower
IRewardDistributor(rewardDistributor).updateDistributionSt... | /**
* @notice Hook function before iToken `repayBorrow()`
* Checks if the account should be allowed to repay the given iToken
* for the borrower. Will `revert()` if any check fails
* @param _iToken The iToken to verify the repay against
* @param _payer The account which would repay iToken
* @param _borrower The a... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
27021,
27607
]
} | 13,325 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterRepayBorrow | function afterRepayBorrow(
address _iToken,
address _payer,
address _borrower,
uint256 _repayAmount
) external override {
_checkiTokenListed(_iToken);
// Remove _iToken from borrowed list if new borrow balance is 0
if (IiToken(_iToken).borrowBalanceStored(_borrower) == 0) {
// Only ... | /**
* @notice Hook function after iToken `repayBorrow()`
* Will `revert()` if any operation fails
* @param _iToken The iToken being repaid
* @param _payer The account which would repay
* @param _borrower The account which has borrowed
* @param _repayAmount The amount of underlying being repaied
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
27948,
28637
]
} | 13,326 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeLiquidateBorrow | function beforeLiquidateBorrow(
address _iTokenBorrowed,
address _iTokenCollateral,
address _liquidator,
address _borrower,
uint256 _repayAmount
) external override {
// Tokens must have been listed
require(
iTokens.contains(_iTokenBorrowed) &&
iTokens.contains(_iTokenCol... | /**
* @notice Hook function before iToken `liquidateBorrow()`
* Checks if the account should be allowed to liquidate the given iToken
* for the borrower. Will `revert()` if any check fails
* @param _iTokenBorrowed The iToken was borrowed
* @param _iTokenCollateral The collateral iToken to be liqudate with
* @para... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
29175,
30086
]
} | 13,327 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterLiquidateBorrow | function afterLiquidateBorrow(
address _iTokenBorrowed,
address _iTokenCollateral,
address _liquidator,
address _borrower,
uint256 _repaidAmount,
uint256 _seizedAmount
) external override {
_iTokenBorrowed;
_iTokenCollateral;
_liquidator;
_borrower;
_repaidAmount;
_seized... | /**
* @notice Hook function after iToken `liquidateBorrow()`
* Will `revert()` if any operation fails
* @param _iTokenBorrowed The iToken was borrowed
* @param _iTokenCollateral The collateral iToken to be seized
* @param _liquidator The account which would repay and seize
* @param _borrower The account which has... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
30589,
31144
]
} | 13,328 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeSeize | function beforeSeize(
address _iTokenCollateral,
address _iTokenBorrowed,
address _liquidator,
address _borrower,
uint256 _seizeAmount
) external override {
require(!seizePaused, "Seize has been paused");
// Markets must have been listed
require(
iTokens.contains(_iTokenBorrowed... | /**
* @notice Hook function before iToken `seize()`
* Checks if the liquidator should be allowed to seize the collateral iToken
* Will `revert()` if any check fails
* @param _iTokenCollateral The collateral iToken to be seize
* @param _iTokenBorrowed The iToken was borrowed
* @param _liquidator The account which ... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
31656,
32960
]
} | 13,329 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterSeize | function afterSeize(
address _iTokenCollateral,
address _iTokenBorrowed,
address _liquidator,
address _borrower,
uint256 _seizedAmount
) external override {
_iTokenBorrowed;
_iTokenCollateral;
_liquidator;
_borrower;
_seizedAmount;
}
| /**
* @notice Hook function after iToken `seize()`
* Will `revert()` if any operation fails
* @param _iTokenCollateral The collateral iToken to be seized
* @param _iTokenBorrowed The iToken was borrowed
* @param _liquidator The account which has repaid and seized
* @param _borrower The account which has borrowed
... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
33385,
33710
]
} | 13,330 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeTransfer | function beforeTransfer(
address _iToken,
address _from,
address _to,
uint256 _amount
) external override {
// _redeemAllowed below will check whether _iToken is listed
require(!transferPaused, "Transfer has been paused");
// Check account equity with this amount to decide whether the tran... | /**
* @notice Hook function before iToken `transfer()`
* Checks if the transfer should be allowed
* Will `revert()` if any check fails
* @param _iToken The iToken to be transfered
* @param _from The account to be transfered from
* @param _to The account to be transfered to
* @param _amount The amount to be trans... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
34078,
34932
]
} | 13,331 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterTransfer | function afterTransfer(
address _iToken,
address _from,
address _to,
uint256 _amount
) external override {
_iToken;
_from;
_to;
_amount;
}
| /**
* @notice Hook function after iToken `transfer()`
* Will `revert()` if any operation fails
* @param _iToken The iToken was transfered
* @param _from The account was transfer from
* @param _to The account was transfer to
* @param _amount The amount was transfered
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
35244,
35458
]
} | 13,332 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | beforeFlashloan | function beforeFlashloan(
address _iToken,
address _to,
uint256 _amount
) external override {
// Flashloan share the same pause state with borrow
require(!markets[_iToken].borrowPaused, "Token borrow has been paused");
_checkiTokenListed(_iToken);
_to;
_amount;
// Update the Rewar... | /**
* @notice Hook function before iToken `flashloan()`
* Checks if the flashloan should be allowed
* Will `revert()` if any check fails
* @param _iToken The iToken to be flashloaned
* @param _to The account flashloaned transfer to
* @param _amount The amount to be flashloaned
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
35780,
36297
]
} | 13,333 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | afterFlashloan | function afterFlashloan(
address _iToken,
address _to,
uint256 _amount
) external override {
_iToken;
_to;
_amount;
}
| /**
* @notice Hook function after iToken `flashloan()`
* Will `revert()` if any operation fails
* @param _iToken The iToken was flashloaned
* @param _to The account flashloan transfer to
* @param _amount The amount was flashloaned
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
36568,
36745
]
} | 13,334 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _redeemAllowed | function _redeemAllowed(
address _iToken,
address _redeemer,
uint256 _amount
) private view {
_checkiTokenListed(_iToken);
// No need to check liquidity if _redeemer has not used _iToken as collateral
if (!accountsData[_redeemer].collaterals.contains(_iToken)) {
return;
}
(, ui... | /*********************************/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
36868,
37399
]
} | 13,335 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _checkiTokenListed | function _checkiTokenListed(address _iToken) private view {
require(iTokens.contains(_iToken), "Token has not been listed");
}
| /**
* @dev Check if _iToken is listed
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
37456,
37598
]
} | 13,336 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | calcAccountEquity | function calcAccountEquity(address _account)
public
view
override
returns (
uint256,
uint256,
uint256,
uint256
)
{
return calcAccountEquityWithEffect(_account, address(0), 0, 0);
}
| /**
* @notice Calculates current account equity
* @param _account The account to query equity of
* @return account equity, shortfall, collateral value, borrowed value.
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
37916,
38204
]
} | 13,337 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | calcAccountEquityWithEffect | function calcAccountEquityWithEffect(
address _account,
address _tokenToEffect,
uint256 _redeemAmount,
uint256 _borrowAmount
)
internal
view
virtual
returns (
uint256,
uint256,
uint256,
uint256
)
{
AccountEquityLocalVars memory _local;
AccountD... | /**
* @notice Calculates current account equity plus some token and amount to effect
* @param _account The account to query equity of
* @param _tokenToEffect The token address to add some additional redeeem/borrow
* @param _redeemAmount The additional amount to redeem
* @param _borrowAmount The additional amount t... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
39248,
42786
]
} | 13,338 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | liquidateCalculateSeizeTokens | function liquidateCalculateSeizeTokens(
address _iTokenBorrowed,
address _iTokenCollateral,
uint256 _actualRepayAmount
) external view virtual override returns (uint256 _seizedTokenCollateral) {
/* Read oracle prices for borrowed and collateral assets */
uint256 _priceBorrowed =
IPriceOracle... | /**
* @notice Calculate amount of collateral iToken to seize after repaying an underlying amount
* @dev Used in liquidation
* @param _iTokenBorrowed The iToken was borrowed
* @param _iTokenCollateral The collateral iToken to be seized
* @param _actualRepayAmount The amount of underlying token liquidator has repaie... | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
43227,
44509
]
} | 13,339 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | getEnteredMarkets | function getEnteredMarkets(address _account)
external
view
override
returns (address[] memory _accountCollaterals)
{
AccountData storage _accountData = accountsData[_account];
uint256 _len = _accountData.collaterals.length();
_accountCollaterals = new address[](_len);
for (uint256 i = 0... | /**
* @notice Returns the markets list the account has entered
* @param _account The address of the account to query
* @return _accountCollaterals The markets list the account has entered
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
44847,
45310
]
} | 13,340 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | enterMarkets | function enterMarkets(address[] calldata _iTokens)
external
override
returns (bool[] memory _results)
{
uint256 _len = _iTokens.length;
_results = new bool[](_len);
for (uint256 i = 0; i < _len; i++) {
_results[i] = _enterMarket(_iTokens[i], msg.sender);
}
}
| /**
* @notice Add markets to `msg.sender`'s markets list for liquidity calculations
* @param _iTokens The list of addresses of the iToken markets to be entered
* @return _results Success indicator for whether each corresponding market was entered
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
45586,
45925
]
} | 13,341 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _enterMarket | function _enterMarket(address _iToken, address _account)
internal
returns (bool)
{
// Market not listed, skip it
if (!iTokens.contains(_iToken)) {
return false;
}
// add() will return false if iToken is in account's market list
if (accountsData[_account].collaterals.add(_iToken)) {
... | /**
* @notice Add the market to the account's markets list for liquidity calculations
* @param _iToken The market to enter
* @param _account The address of the account to modify
* @return True if entered successfully, false for non-listed market or other errors
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
46221,
46669
]
} | 13,342 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | enterMarketFromiToken | function enterMarketFromiToken(address _account)
external
override
{
require(
_enterMarket(msg.sender, _account),
"enterMarketFromiToken: Only can be called by a supported iToken!"
);
}
| /**
* @notice Only expect to be called by iToken contract.
* @dev Add the market to the account's markets list for liquidity calculations
* @param _account The address of the account to modify
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
46891,
47144
]
} | 13,343 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | hasEnteredMarket | function hasEnteredMarket(address _account, address _iToken)
external
view
override
returns (bool)
{
return accountsData[_account].collaterals.contains(_iToken);
}
| /**
* @notice Returns whether the given account has entered the market
* @param _account The address of the account to check
* @param _iToken The iToken to check against
* @return True if the account has entered the market, otherwise false.
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
47419,
47634
]
} | 13,344 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | exitMarkets | function exitMarkets(address[] calldata _iTokens)
external
override
returns (bool[] memory _results)
{
uint256 _len = _iTokens.length;
_results = new bool[](_len);
for (uint256 i = 0; i < _len; i++) {
_results[i] = _exitMarket(_iTokens[i], msg.sender);
}
}
| /**
* @notice Remove markets from `msg.sender`'s collaterals for liquidity calculations
* @param _iTokens The list of addresses of the iToken to exit
* @return _results Success indicators for whether each corresponding market was exited
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
47900,
48236
]
} | 13,345 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _exitMarket | function _exitMarket(address _iToken, address _account)
internal
returns (bool)
{
// Market not listed, skip it
if (!iTokens.contains(_iToken)) {
return true;
}
// Account has not entered this market, skip it
if (!accountsData[_account].collaterals.contains(_iToken)) {
retur... | /**
* @notice Remove the market to the account's markets list for liquidity calculations
* @param _iToken The market to exit
* @param _account The address of the account to modify
* @return True if exit successfully, false for non-listed market or other errors
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
48531,
49394
]
} | 13,346 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | getBorrowedAssets | function getBorrowedAssets(address _account)
external
view
override
returns (address[] memory _borrowedAssets)
{
AccountData storage _accountData = accountsData[_account];
uint256 _len = _accountData.borrowed.length();
_borrowedAssets = new address[](_len);
for (uint256 i = 0; i < _len;... | /**
* @notice Returns the asset list the account has borrowed
* @param _account The address of the account to query
* @return _borrowedAssets The asset list the account has borrowed
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
49605,
50050
]
} | 13,347 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _addToBorrowed | function _addToBorrowed(address _account, address _iToken) internal {
// add() will return false if iToken is in account's market list
if (accountsData[_account].borrowed.add(_iToken)) {
emit BorrowedAdded(_iToken, _account);
}
}
| /**
* @notice Add the market to the account's borrowed list for equity calculations
* @param _iToken The iToken of underlying to borrow
* @param _account The address of the account to modify
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
50270,
50543
]
} | 13,348 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | hasBorrowed | function hasBorrowed(address _account, address _iToken)
public
view
override
returns (bool)
{
return accountsData[_account].borrowed.contains(_iToken);
}
| /**
* @notice Returns whether the given account has borrowed the given iToken
* @param _account The address of the account to check
* @param _iToken The iToken to check against
* @return True if the account has borrowed the iToken, otherwise false.
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
50826,
51031
]
} | 13,349 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | _removeFromBorrowed | function _removeFromBorrowed(address _account, address _iToken) internal {
// remove() will return false if iToken does not exist in account's borrowed list
if (accountsData[_account].borrowed.remove(_iToken)) {
emit BorrowedRemoved(_iToken, _account);
}
}
| /**
* @notice Remove the iToken from the account's borrowed list
* @param _iToken The iToken to remove
* @param _account The address of the account to modify
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
51218,
51518
]
} | 13,350 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | getAlliTokens | function getAlliTokens()
public
view
override
returns (address[] memory _alliTokens)
{
EnumerableSetUpgradeable.AddressSet storage _iTokens = iTokens;
uint256 _len = _iTokens.length();
_alliTokens = new address[](_len);
for (uint256 i = 0; i < _len; i++) {
_alliTokens[i] = _iTok... | /**
* @notice Return all of the iTokens
* @return _alliTokens The list of iToken addresses
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
51754,
52144
]
} | 13,351 | ||
Controller | contracts/Controller.sol | 0xd5b837a41a0d664ec28aa55b69b352944f741efa | Solidity | Controller | contract Controller is Initializable, Ownable, IControllerInterface {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeRatioMath for uint256;
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
/// @dev EnumerableSet of all iToke... | /**
* @title dForce's lending controller Contract
* @author dForce
*/ | NatSpecMultiLine | hasiToken | function hasiToken(address _iToken) public view override returns (bool) {
return iTokens.contains(_iToken);
}
| /**
* @notice Check whether a iToken is listed in controller
* @param _iToken The iToken to check for
* @return true if the iToken is listed otherwise false
*/ | NatSpecMultiLine | v0.6.12+commit.27d51765 | {
"func_code_index": [
52330,
52455
]
} | 13,352 | ||
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | supportsInterface | function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
| /**
* @dev See {IERC165-supportsInterface}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
971,
1281
]
} | 13,353 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | balanceOf | function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
| /**
* @dev See {IERC721-balanceOf}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
1340,
1553
]
} | 13,354 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | ownerOf | function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
| /**
* @dev See {IERC721-ownerOf}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
1610,
1854
]
} | 13,355 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | name | function name() public view virtual override returns (string memory) {
return _name;
}
| /**
* @dev See {IERC721Metadata-name}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
1916,
2021
]
} | 13,356 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | symbol | function symbol() public view virtual override returns (string memory) {
return _symbol;
}
| /**
* @dev See {IERC721Metadata-symbol}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
2085,
2194
]
} | 13,357 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | tokenURI | function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
| /**
* @dev See {IERC721Metadata-tokenURI}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
2260,
2599
]
} | 13,358 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _baseURI | function _baseURI() internal view virtual returns (string memory) {
return "";
}
| /**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
2842,
2941
]
} | 13,359 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | approve | function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor... | /**
* @dev See {IERC721-approve}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
2998,
3414
]
} | 13,360 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | getApproved | function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
| /**
* @dev See {IERC721-getApproved}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
3475,
3701
]
} | 13,361 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | setApprovalForAll | function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
| /**
* @dev See {IERC721-setApprovalForAll}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
3768,
3928
]
} | 13,362 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | isApprovedForAll | function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
| /**
* @dev See {IERC721-isApprovedForAll}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
3994,
4163
]
} | 13,363 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | transferFrom | function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
| /**
* @dev See {IERC721-transferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
4225,
4569
]
} | 13,364 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | safeTransferFrom | function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
| /**
* @dev See {IERC721-safeTransferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
4635,
4825
]
} | 13,365 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | safeTransferFrom | function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
| /**
* @dev See {IERC721-safeTransferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
4891,
5224
]
} | 13,366 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _safeTransfer | function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
| /**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is eq... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
6101,
6421
]
} | 13,367 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _exists | function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
| /**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
6729,
6861
]
} | 13,368 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _isApprovedOrOwner | function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, s... | /**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
7023,
7376
]
} | 13,369 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _safeMint | function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
| /**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
7713,
7828
]
} | 13,370 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _safeMint | function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
| /**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
8050,
8376
]
} | 13,371 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _mint | function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Tra... | /**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
8707,
9094
]
} | 13,372 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _burn | function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), toke... | /**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
9318,
9683
]
} | 13,373 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _transfer | function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
//... | /**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
10015,
10598
]
} | 13,374 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _approve | function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
| /**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
10711,
10890
]
} | 13,375 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _setApprovalForAll | function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
| /**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
11027,
11347
]
} | 13,376 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _checkOnERC721Received | function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721... | /**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param to... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
11907,
12711
]
} | 13,377 |
bitGOONs | @openzeppelin/contracts/token/ERC721/ERC721.sol | 0x854eca04ff6c3b01940fe95620c555d3948bea38 | Solidity | ERC721 | contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _ow... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/ | NatSpecMultiLine | _beforeTokenTransfer | function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
| /**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://631ba78be0d237f71bdb1453860986f8d5b20ffdbd043b9efbbef764ac2c2329 | {
"func_code_index": [
13278,
13409
]
} | 13,378 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | isContract | 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)
... | /**
* @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:
... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
606,
998
]
} | 13,379 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | sendValue | 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 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 `tr... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1928,
2250
]
} | 13,380 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionCall | function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
| /**
* @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... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
3007,
3187
]
} | 13,381 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionCall | 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 with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
3412,
3646
]
} | 13,382 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionCallWithValue | 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-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._
*... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
4016,
4281
]
} | 13,383 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionCallWithValue | 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");... | /**
* @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._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
4532,
5047
]
} | 13,384 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionStaticCall | 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-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
5227,
5431
]
} | 13,385 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionStaticCall | 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 verifyCallRe... | /**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
5618,
6018
]
} | 13,386 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionDelegateCall | 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-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
6200,
6405
]
} | 13,387 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionDelegateCall | 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 verifyCallR... | /**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
6594,
6995
]
} | 13,388 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Address | 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 ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | verifyCallResult | 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) {
... | /**
* @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._
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
7218,
7935
]
} | 13,389 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Strings | library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT ... | /**
* @dev String operations.
*/ | NatSpecMultiLine | toString | function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 ... | /**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
184,
912
]
} | 13,390 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Strings | library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT ... | /**
* @dev String operations.
*/ | NatSpecMultiLine | toHexString | function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
| /**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1017,
1362
]
} | 13,391 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Strings | library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT ... | /**
* @dev String operations.
*/ | NatSpecMultiLine | toHexString | function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
... | /**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1485,
1941
]
} | 13,392 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Ownable | 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() {
_setOwner(_msgSender());
... | /**
* @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}.
... | NatSpecMultiLine | owner | function owner() public view virtual returns (address) {
return _owner;
}
| /**
* @dev Returns the address of the current owner.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
399,
491
]
} | 13,393 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Ownable | 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() {
_setOwner(_msgSender());
... | /**
* @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}.
... | NatSpecMultiLine | renounceOwnership | function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
| /**
* @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.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1050,
1149
]
} | 13,394 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | Ownable | 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() {
_setOwner(_msgSender());
... | /**
* @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}.
... | NatSpecMultiLine | transferOwnership | function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
| /**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1299,
1496
]
} | 13,395 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | IERC165 | interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This f... | /**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/ | NatSpecMultiLine | supportsInterface | function supportsInterface(bytes4 interfaceId) external view returns (bool);
| /**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
374,
455
]
} | 13,396 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | IERC721 | interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
... | /**
* @dev Required interface of an ERC721 compliant contract.
*/ | NatSpecMultiLine | balanceOf | function balanceOf(address owner) external view returns (uint256 balance);
| /**
* @dev Returns the number of tokens in ``owner``'s account.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
719,
798
]
} | 13,397 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | IERC721 | interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
... | /**
* @dev Required interface of an ERC721 compliant contract.
*/ | NatSpecMultiLine | ownerOf | function ownerOf(uint256 tokenId) external view returns (address owner);
| /**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
944,
1021
]
} | 13,398 |
TMBA | TMBA.sol | 0x0f34c401c2d64c063666cd40f762fcb924979d90 | Solidity | IERC721 | interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
... | /**
* @dev Required interface of an ERC721 compliant contract.
*/ | NatSpecMultiLine | safeTransferFrom | function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
| /**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token mus... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | MIT | ipfs://e681bf8422d22ed969fa36d13faad6e1069f22a61113a46dba5df7df01a86eac | {
"func_code_index": [
1733,
1850
]
} | 13,399 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.