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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
VOTEpoolchef | contracts/VOTEpoolchef.sol | 0xc08455c084921285059658e73e7dd12dca655cae | Solidity | VOTEpoolchef | contract VOTEpoolchef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. Same as sushiswap
}
struct PoolInfo {
IERC20 lpToken; ... | dev | function dev(address _devaddr) public {
require(msg.sender == devaddr, "ERROR");
devaddr = _devaddr;
}
| // dev address by the previous dev | LineComment | v0.6.12+commit.27d51765 | MIT | ipfs://1ce0ee090b1a8e321f03b68647dab77faed29fae35a235e657356d3ffc7bc914 | {
"func_code_index": [
8602,
8732
]
} | 5,407 | ||
VOTEpoolchef | contracts/VOTEpoolchef.sol | 0xc08455c084921285059658e73e7dd12dca655cae | Solidity | VOTEpoolchef | contract VOTEpoolchef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. Same as sushiswap
}
struct PoolInfo {
IERC20 lpToken; ... | eventa | function eventa(address _eventaddr) public {
require(msg.sender == devaddr, "ERROR");
eventaddr = _eventaddr;
}
| // Eventpool address | LineComment | v0.6.12+commit.27d51765 | MIT | ipfs://1ce0ee090b1a8e321f03b68647dab77faed29fae35a235e657356d3ffc7bc914 | {
"func_code_index": [
8761,
8900
]
} | 5,408 | ||
VOTEpoolchef | contracts/VOTEpoolchef.sol | 0xc08455c084921285059658e73e7dd12dca655cae | Solidity | VOTEpoolchef | contract VOTEpoolchef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. Same as sushiswap
}
struct PoolInfo {
IERC20 lpToken; ... | emergencyWithdraw | function emergencyWithdraw(uint256 _pid) public {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
pool.lpToken.safeTransfer(address(msg.sender), user.amount);
emit EmergencyWithdraw(msg.sender, _pid, user.amount);
user.amount = 0;
user.rewardDebt... | // Withdraw without caring about rewards. EMERGENCY ONLY. | LineComment | v0.6.12+commit.27d51765 | MIT | ipfs://1ce0ee090b1a8e321f03b68647dab77faed29fae35a235e657356d3ffc7bc914 | {
"func_code_index": [
8966,
9327
]
} | 5,409 | ||
VOTEpoolchef | contracts/VOTEpoolchef.sol | 0xc08455c084921285059658e73e7dd12dca655cae | Solidity | VOTEpoolchef | contract VOTEpoolchef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. Same as sushiswap
}
struct PoolInfo {
IERC20 lpToken; ... | safeVOTTransfer | function safeVOTTransfer(address _to, uint256 _amount) internal {
uint256 votepoolBal = votepool.balanceOf(address(this));
if (_amount > votepoolBal) {
votepool.transfer(_to, votepoolBal);
} else {
votepool.transfer(_to, _amount);
}
}
| // Safe VOTEpool transfer | LineComment | v0.6.12+commit.27d51765 | MIT | ipfs://1ce0ee090b1a8e321f03b68647dab77faed29fae35a235e657356d3ffc7bc914 | {
"func_code_index": [
9365,
9671
]
} | 5,410 | ||
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
374,
455
]
} | 5,411 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
719,
798
]
} | 5,412 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
944,
1021
]
} | 5,413 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1812,
1929
]
} | 5,414 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | transferFrom | function transferFrom(
address from,
address to,
uint256 tokenId
) external;
| /**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If th... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2455,
2568
]
} | 5,415 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | approve | function approve(address to, uint256 tokenId) external;
| /**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3041,
3101
]
} | 5,416 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | getApproved | function getApproved(uint256 tokenId) external view returns (address operator);
| /**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3255,
3339
]
} | 5,417 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | setApprovalForAll | function setApprovalForAll(address operator, bool _approved) external;
| /**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3666,
3741
]
} | 5,418 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | isApprovedForAll | function isApprovedForAll(address owner, address operator) external view returns (bool);
| /**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3892,
3985
]
} | 5,419 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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,
bytes calldata data
) external;
| /**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {appro... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4562,
4709
]
} | 5,420 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
184,
912
]
} | 5,421 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1017,
1362
]
} | 5,422 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1485,
1941
]
} | 5,423 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | Ownable | abstract contract Ownable is Context {
address private _owner;
address private _pending_owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
... | /**
* @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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
436,
528
]
} | 5,424 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Receiver | interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other valu... | /**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/ | NatSpecMultiLine | onERC721Received | function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
| /**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by ... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
528,
698
]
} | 5,425 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Metadata | interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev... | /**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | name | function name() external view returns (string memory);
| /**
* @dev Returns the token collection name.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
106,
165
]
} | 5,426 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Metadata | interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev... | /**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | symbol | function symbol() external view returns (string memory);
| /**
* @dev Returns the token collection symbol.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
236,
297
]
} | 5,427 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Metadata | interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev... | /**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | tokenURI | function tokenURI(uint256 tokenId) external view returns (string memory);
| /**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
398,
476
]
} | 5,428 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
606,
998
]
} | 5,429 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1928,
2250
]
} | 5,430 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3007,
3187
]
} | 5,431 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3412,
3646
]
} | 5,432 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4016,
4281
]
} | 5,433 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4532,
5048
]
} | 5,434 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
5228,
5432
]
} | 5,435 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 _verifyCallR... | /**
* @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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
5619,
6020
]
} | 5,436 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
6202,
6407
]
} | 5,437 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 _verifyCall... | /**
* @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 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
6596,
6998
]
} | 5,438 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC165 | abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
} | /**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interface... | NatSpecMultiLine | supportsInterface | function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
| /**
* @dev See {IERC165-supportsInterface}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
103,
265
]
} | 5,439 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
971,
1281
]
} | 5,440 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1340,
1553
]
} | 5,441 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1610,
1854
]
} | 5,442 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2043,
2148
]
} | 5,443 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2212,
2321
]
} | 5,444 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2387,
2726
]
} | 5,445 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2969,
3068
]
} | 5,446 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3125,
3541
]
} | 5,447 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3602,
3828
]
} | 5,448 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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 {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
| /**
* @dev See {IERC721-setApprovalForAll}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3895,
4195
]
} | 5,449 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4261,
4430
]
} | 5,450 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4492,
4836
]
} | 5,451 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4902,
5092
]
} | 5,452 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
5158,
5491
]
} | 5,453 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
6368,
6688
]
} | 5,454 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
6996,
7128
]
} | 5,455 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
7290,
7643
]
} | 5,456 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
7980,
8095
]
} | 5,457 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
8317,
8643
]
} | 5,458 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
8974,
9361
]
} | 5,459 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
9585,
9950
]
} | 5,460 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
10282,
10865
]
} | 5,461 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
10978,
11157
]
} | 5,462 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
11717,
12525
]
} | 5,463 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | 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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
13092,
13223
]
} | 5,464 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Enumerable | interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the assets stored by the contract.
*/
function assets() external view returns (addres... | /**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | totalSupply | function totalSupply() external view returns (uint256);
| /**
* @dev Returns the total amount of tokens stored by the contract.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
132,
192
]
} | 5,465 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Enumerable | interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the assets stored by the contract.
*/
function assets() external view returns (addres... | /**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | assets | function assets() external view returns (address);
| /**
* @dev Returns the assets stored by the contract.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
269,
324
]
} | 5,466 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Enumerable | interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the assets stored by the contract.
*/
function assets() external view returns (addres... | /**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | tokenOfOwnerByIndex | function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
| /**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
507,
611
]
} | 5,467 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | IERC721Enumerable | interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the assets stored by the contract.
*/
function assets() external view returns (addres... | /**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/ | NatSpecMultiLine | tokenByIndex | function tokenByIndex(uint256 index) external view returns (uint256);
| /**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
787,
861
]
} | 5,468 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | supportsInterface | function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
| /**
* @dev See {IERC165-supportsInterface}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
637,
866
]
} | 5,469 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | tokenOfOwnerByIndex | function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
| /**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
945,
1206
]
} | 5,470 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | totalSupply | function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
| /**
* @dev See {IERC721Enumerable-totalSupply}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1277,
1395
]
} | 5,471 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | tokenByIndex | function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
| /**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
1575,
1813
]
} | 5,472 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | _beforeTokenTransfer | function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnume... | /**
* @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.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
2606,
3110
]
} | 5,473 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | _addTokenToOwnerEnumeration | function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
require(length == 0, "Root: already exists!");
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
| /**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3406,
3690
]
} | 5,474 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | _addTokenToAllTokensEnumeration | function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
| /**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
3886,
4055
]
} | 5,475 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | _removeTokenFromOwnerEnumeration | function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
require(ERC721.balanceOf(from) == 1, "Root: not exists!");
//... | /**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).... | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
4677,
5173
]
} | 5,476 |
Root | Root.sol | 0x92d8cccd1a325a84e266bdc39aca945e660a3d48 | Solidity | ERC721Enumerable | abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;... | /**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/ | NatSpecMultiLine | _removeTokenFromAllTokensEnumeration | function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allT... | /**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/ | NatSpecMultiLine | v0.8.7+commit.e28d00a7 | None | ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2 | {
"func_code_index": [
5463,
6547
]
} | 5,477 |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | TRADECOIN | function TRADECOIN() public {
symbol = "TRDC";
name = "TRADECOIN";
decimals = 18;
_totalSupply = 1000000000000000000000000000;
balances[0x6Bdf68656686ad6AAAE3B20C23E0cAE934f56c04] = _totalSupply;
Transfer(address(0), 0x6Bdf68656686ad6AAAE3B20C23E0cAE934f56c04, _totalSupply);
}
| // ------------------------------------------------------------------------
// Constructor
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
456,
797
]
} | 5,478 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | totalSupply | function totalSupply() public constant returns (uint) {
return _totalSupply - balances[address(0)];
}
| // ------------------------------------------------------------------------
// Total supply
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
985,
1106
]
} | 5,479 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | balanceOf | function balanceOf(address tokenOwner) public constant returns (uint balance) {
return balances[tokenOwner];
}
| // ------------------------------------------------------------------------
// Get the token balance for account tokenOwner
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
1326,
1455
]
} | 5,480 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | transfer | function transfer(address to, uint tokens) public returns (bool success) {
balances[msg.sender] = safeSub(balances[msg.sender], tokens);
balances[to] = safeAdd(balances[to], tokens);
Transfer(msg.sender, to, tokens);
return true;
}
| // ------------------------------------------------------------------------
// Transfer the balance from token owner's account to to account
// - Owner's account must have sufficient balance to transfer
// - 0 value transfers are allowed
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
1799,
2076
]
} | 5,481 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | approve | function approve(address spender, uint tokens) public returns (bool success) {
allowed[msg.sender][spender] = tokens;
Approval(msg.sender, spender, tokens);
return true;
}
| // ------------------------------------------------------------------------
// Token owner can approve for spender to transferFrom(...) tokens
// from the token owner's account
//
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// recommends that there are no checks for the approval double... | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
2584,
2792
]
} | 5,482 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | transferFrom | function transferFrom(address from, address to, uint tokens) public returns (bool success) {
balances[from] = safeSub(balances[from], tokens);
allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
balances[to] = safeAdd(balances[to], tokens);
Transfer(from, to, tokens);
return... | // ------------------------------------------------------------------------
// Transfer tokens from the from account to the to account
//
// The calling account must already have sufficient tokens approve(...)-d
// for spending from the from account and
// - From account must have sufficient balance to transfer
// - S... | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
3323,
3681
]
} | 5,483 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | allowance | function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {
return allowed[tokenOwner][spender];
}
| // ------------------------------------------------------------------------
// Returns the amount of tokens approved by the owner that can be
// transferred to the spender's account
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
3964,
4120
]
} | 5,484 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | approveAndCall | function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
allowed[msg.sender][spender] = tokens;
Approval(msg.sender, spender, tokens);
ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
return true;
}
| // ------------------------------------------------------------------------
// Token owner can approve for spender to transferFrom(...) tokens
// from the token owner's account. The spender contract function
// receiveApproval(...) is then executed
// --------------------------------------------------------------------... | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
4475,
4792
]
} | 5,485 | |
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | function () public payable {
revert();
}
| // ------------------------------------------------------------------------
// Don't accept ETH
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
4984,
5043
]
} | 5,486 | ||
TRADECOIN | TRADECOIN.sol | 0x8dc53ec99ec97bf098ec3777c9ddcef935df49d4 | Solidity | TRADECOIN | contract TRADECOIN is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ---------------------------------------... | // ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ---------------------------------------------------------------------------- | LineComment | transferAnyERC20Token | function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
return ERC20Interface(tokenAddress).transfer(owner, tokens);
}
| // ------------------------------------------------------------------------
// Owner can transfer out any accidentally sent ERC20 tokens
// ------------------------------------------------------------------------ | LineComment | v0.4.20+commit.3155dd80 | bzzr://626574256c6080d4a23a0e4d36daa6475fe50f8a94744e196761108c9442af19 | {
"func_code_index": [
5276,
5465
]
} | 5,487 | |
Flasher | contracts/interfaces/cream/IERC3156FlashLender.sol | 0x7b28716a339e33b9d42f927196016458aca55947 | Solidity | IERC3156FlashLender | interface IERC3156FlashLender {
/**
* @dev The amount of currency available to be lent.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/
function maxFlashLoan(address token) external view returns (uint256);
/**
* @dev The fee to be charged for a given loan... | maxFlashLoan | function maxFlashLoan(address token) external view returns (uint256);
| /**
* @dev The amount of currency available to be lent.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/ | NatSpecMultiLine | v0.8.0+commit.c7dfd78e | {
"func_code_index": [
193,
264
]
} | 5,488 | ||||
Flasher | contracts/interfaces/cream/IERC3156FlashLender.sol | 0x7b28716a339e33b9d42f927196016458aca55947 | Solidity | IERC3156FlashLender | interface IERC3156FlashLender {
/**
* @dev The amount of currency available to be lent.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/
function maxFlashLoan(address token) external view returns (uint256);
/**
* @dev The fee to be charged for a given loan... | flashFee | function flashFee(address token, uint256 amount) external view returns (uint256);
| /**
* @dev The fee to be charged for a given loan.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @return The amount of `token` to be charged for the loan, on top of the returned principal.
*/ | NatSpecMultiLine | v0.8.0+commit.c7dfd78e | {
"func_code_index": [
508,
591
]
} | 5,489 | ||||
Flasher | contracts/interfaces/cream/IERC3156FlashLender.sol | 0x7b28716a339e33b9d42f927196016458aca55947 | Solidity | IERC3156FlashLender | interface IERC3156FlashLender {
/**
* @dev The amount of currency available to be lent.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/
function maxFlashLoan(address token) external view returns (uint256);
/**
* @dev The fee to be charged for a given loan... | flashLoan | function flashLoan(
ICFlashloanReceiver receiver,
address token,
uint256 amount,
bytes calldata data
) external returns (bool);
| /**
* @dev Initiate a flash loan.
* @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @param data Arbitrary data structure, intended to contain user-defined parameters.
*/ | NatSpecMultiLine | v0.8.0+commit.c7dfd78e | {
"func_code_index": [
904,
1051
]
} | 5,490 | ||||
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | cDivvies | function cDivvies()
public
{
// add administrators here
administrators[keccak256(0x911de5E37001C3E1352E7213C8d85F8Eb3788499)] = true;
ambassadors_[0x911de5E37001C3E1352E7213C8d85F8Eb3788499] = true;
}
| /*
* -- APPLICATION ENTRY POINTS --
*/ | Comment | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
4493,
4783
]
} | 5,491 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | buy | function buy(address _referredBy)
public
payable
returns(uint256)
{
purchaseTokens(msg.value, _referredBy);
}
| /**
* Converts all incoming Ethereum to tokens for the caller, and passes down the referral address (if any)
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
4926,
5086
]
} | 5,492 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | reinvest | function reinvest()
onlyhodler()
public
{
// fetch dividends
uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code
// pay out the dividends virtually
address _customerAddress = msg.sender;
payoutsTo_[_customerAddress] += (int256) (_dividends * m... | /**
* Converts all of caller's dividends to tokens.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
5281,
6048
]
} | 5,493 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | exit | function exit()
public
{
// get token count for caller & sell them all
address _customerAddress = msg.sender;
uint256 _tokens = tokenBalanceLedger_[_customerAddress];
if(_tokens > 0) sell(_tokens);
withdraw();
}
| /**
* Alias of sell() and withdraw().
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
6113,
6413
]
} | 5,494 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | withdraw | function withdraw()
onlyhodler()
public
{
// setup data
address _customerAddress = msg.sender;
uint256 _dividends = myDividends(false); // get ref. bonus later in the code
// update dividend tracker
payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude);
... | /**
* Withdraws all of the callers earnings.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
6481,
7153
]
} | 5,495 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | sell | function sell(uint256 _amountOfTokens)
onlyEnlightened ()
public
{
address _customerAddress = msg.sender;
require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
uint256 _tokens = _amountOfTokens;
uint256 _ethereum = tokensToEthereum_(_tokens);
uint256 _di... | /**
* Liquifies tokens to ethereum.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
7216,
8484
]
} | 5,496 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | transfer | function transfer(address _toAddress, uint256 _amountOfTokens)
onlyEnlightened ()
public
returns(bool)
{
// setup
address _customerAddress = msg.sender;
// make sure we have the requested tokens
require(!onlyAmbassadors && _amountOfTokens <= tokenBalanceLedger_[_cust... | /**
* Transfer tokens from the caller to a new holder.
* No fee for transfering tokens :)
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
8613,
9740
]
} | 5,497 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | disableInitialStage | function disableInitialStage()
onlyAdministrator()
public
{
onlyAmbassadors = false;
}
| /**
* administrator can manually disable the ambassador phase.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
9892,
10020
]
} | 5,498 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | totalEthereumBalance | function totalEthereumBalance()
public
view
returns(uint)
{
return this.balance;
}
| /**
* Method to view the current Ethereum stored in the contract
* Example: totalEthereumBalance()
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
10840,
10973
]
} | 5,499 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | totalSupply | function totalSupply()
public
view
returns(uint256)
{
return tokenSupply_;
}
| /**
* Retrieve the total token supply.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
11039,
11166
]
} | 5,500 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | myTokens | function myTokens()
public
view
returns(uint256)
{
address _customerAddress = msg.sender;
return balanceOf(_customerAddress);
}
| /**
* Retrieve the tokens owned by the caller.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
11240,
11427
]
} | 5,501 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | myDividends | function myDividends(bool _includeReferralBonus)
public
view
returns(uint256)
{
address _customerAddress = msg.sender;
return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
}
| /**
* Retrieve the dividends owned by the caller.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
11507,
11822
]
} | 5,502 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | balanceOf | function balanceOf(address _customerAddress)
view
public
returns(uint256)
{
return tokenBalanceLedger_[_customerAddress];
}
| /**
* Retrieve the token balance of any single address.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
11905,
12079
]
} | 5,503 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | dividendsOf | function dividendsOf(address _customerAddress)
view
public
returns(uint256)
{
return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude;
}
| /**
* Retrieve the dividend balance of any single address.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
12165,
12424
]
} | 5,504 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | sellPrice | function sellPrice()
public
view
returns(uint256)
{
if(tokenSupply_ == 0){
return tokenPriceInitial_ - tokenPriceIncremental_;
} else {
uint256 _ethereum = tokensToEthereum_(1e18);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_ );
uin... | /**
* Return the buy price of 1 individual token.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
12501,
12978
]
} | 5,505 |
cDivvies | cDivvies.sol | 0xac8bcc840cf9aad7d9087b9ddc99db1e5c3e52d6 | Solidity | cDivvies | contract cDivvies {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyEnlightened () {
require(myTokens() > 0);
_;
}
// only people with profits
modifier only... | // FORK OF P3D WITH THE FOLLOWING CHANGES | LineComment | buyPrice | function buyPrice()
public
view
returns(uint256)
{
if(tokenSupply_ == 0){
return tokenPriceInitial_ + tokenPriceIncremental_;
} else {
uint256 _ethereum = tokensToEthereum_(1e18);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_ );
uin... | /**
* Return the sell price of 1 individual token.
*/ | NatSpecMultiLine | v0.4.20+commit.3155dd80 | None | bzzr://663cd0c549889fe92bce475a5fbe7948e49cfa5e8ad900772d52aff3f5d7f4c6 | {
"func_code_index": [
13056,
13533
]
} | 5,506 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.