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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Ownable | abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender... | /**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
... | NatSpecMultiLine | renounceOwnership | function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
| /**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1059,
1167
]
} | 10,000 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Ownable | abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender... | /**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
... | NatSpecMultiLine | transferOwnership | function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
| /**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1317,
1523
]
} | 10,001 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Ownable | abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender... | /**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
... | NatSpecMultiLine | _transferOwnership | function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
| /**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1678,
1874
]
} | 10,002 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
184,
912
]
} | 10,003 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1017,
1362
]
} | 10,004 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1485,
1941
]
} | 10,005 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | tryAdd | function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
| /**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
161,
388
]
} | 10,006 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | trySub | function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
| /**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
536,
735
]
} | 10,007 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | tryMul | function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
... | /**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
885,
1393
]
} | 10,008 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | tryDiv | function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
| /**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1544,
1744
]
} | 10,009 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | tryMod | function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
| /**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1905,
2105
]
} | 10,010 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | add | function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
| /**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
2347,
2450
]
} | 10,011 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | sub | function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
| /**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
2728,
2831
]
} | 10,012 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | mul | function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
| /**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3085,
3188
]
} | 10,013 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | div | function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
| /**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3484,
3587
]
} | 10,014 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | mod | function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
| /**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consu... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4049,
4152
]
} | 10,015 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | sub | function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
| /**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterp... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4626,
4871
]
} | 10,016 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | div | function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
| /**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an ... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
5364,
5608
]
} | 10,017 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | SafeMath | library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) ... | /**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/ | NatSpecMultiLine | mod | function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
| /**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6266,
6510
]
} | 10,018 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
606,
998
]
} | 10,019 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1928,
2250
]
} | 10,020 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3007,
3187
]
} | 10,021 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3412,
3646
]
} | 10,022 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4016,
4281
]
} | 10,023 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4532,
5047
]
} | 10,024 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
5227,
5431
]
} | 10,025 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Address | library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionStaticCall | function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallRe... | /**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
5618,
6018
]
} | 10,026 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6200,
6405
]
} | 10,027 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Address | library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | functionDelegateCall | function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallR... | /**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6594,
6995
]
} | 10,028 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | Address | library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will ... | /**
* @dev Collection of functions related to the address type
*/ | NatSpecMultiLine | verifyCallResult | function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
... | /**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
7218,
7935
]
} | 10,029 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
374,
455
]
} | 10,030 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
719,
798
]
} | 10,031 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
944,
1021
]
} | 10,032 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1733,
1850
]
} | 10,033 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
2376,
2489
]
} | 10,034 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
2962,
3022
]
} | 10,035 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3176,
3260
]
} | 10,036 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3587,
3662
]
} | 10,037 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3813,
3906
]
} | 10,038 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4483,
4630
]
} | 10,039 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
528,
698
]
} | 10,040 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
106,
165
]
} | 10,041 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
236,
297
]
} | 10,042 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
398,
476
]
} | 10,043 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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 a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanc... | /**
* @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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
132,
192
]
} | 10,044 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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 a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanc... | /**
* @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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
375,
479
]
} | 10,045 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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 a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanc... | /**
* @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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
655,
729
]
} | 10,046 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | 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.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
103,
265
]
} | 10,047 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | totalSupply | function totalSupply() public view override returns (uint256) {
return currentIndex;
}
| /**
* @dev See {IERC721Enumerable-totalSupply}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1252,
1357
]
} | 10,048 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | tokenByIndex | function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), 'ERC721A: global index out of bounds');
return index;
}
| /**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1429,
1621
]
} | 10,049 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | tokenOfOwnerByIndex | function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = ... | /**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
1916,
2744
]
} | 10,050 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | supportsInterface | function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.suppor... | /**
* @dev See {IERC165-supportsInterface}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
2811,
3188
]
} | 10,051 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | balanceOf | function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), 'ERC721A: balance query for the zero address');
return uint256(_addressData[owner].balance);
}
| /**
* @dev See {IERC721-balanceOf}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3247,
3473
]
} | 10,052 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | ownershipOf | function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');
for (uint256 curr = tokenId; ; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
... | /**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
3907,
4384
]
} | 10,053 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | ownerOf | function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
| /**
* @dev See {IERC721-ownerOf}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4441,
4570
]
} | 10,054 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | name | function name() public view virtual override returns (string memory) {
return _name;
}
| /**
* @dev See {IERC721Metadata-name}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4632,
4737
]
} | 10,055 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | symbol | function symbol() public view virtual override returns (string memory) {
return _symbol;
}
| /**
* @dev See {IERC721Metadata-symbol}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4801,
4910
]
} | 10,056 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | tokenURI | function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
| /**
* @dev See {IERC721Metadata-tokenURI}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
4976,
5315
]
} | 10,057 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _baseURI | function _baseURI() internal view virtual returns (string memory) {
return '';
}
| /**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
5558,
5657
]
} | 10,058 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | approve | function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, 'ERC721A: approval to current owner');
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
'ERC721A: approve caller is not owner nor appr... | /**
* @dev See {IERC721-approve}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
5714,
6132
]
} | 10,059 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | getApproved | function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');
return _tokenApprovals[tokenId];
}
| /**
* @dev See {IERC721-getApproved}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6193,
6412
]
} | 10,060 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | setApprovalForAll | function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), 'ERC721A: approve to caller');
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
| /**
* @dev See {IERC721-setApprovalForAll}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6479,
6772
]
} | 10,061 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | isApprovedForAll | function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
| /**
* @dev See {IERC721-isApprovedForAll}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
6838,
7007
]
} | 10,062 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | transferFrom | function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
_transfer(from, to, tokenId);
}
| /**
* @dev See {IERC721-transferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
7069,
7236
]
} | 10,063 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | safeTransferFrom | function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, '');
}
| /**
* @dev See {IERC721-safeTransferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
7302,
7484
]
} | 10,064 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | safeTransferFrom | function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
'ERC721A: transfer to non ERC721Receiver implementer'
);
}
| /**
* @dev See {IERC721-safeTransferFrom}.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
7550,
7910
]
} | 10,065 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _exists | function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
| /**
* @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`),
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
8160,
8276
]
} | 10,066 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _safeMint | function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
| /**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
8746,
8914
]
} | 10,067 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _mint | function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), 'ERC721A: mint to the zero address');
// We know if the first token in the batch doesn't exist, the other ones don't as well, becaus... | /**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
9168,
10574
]
} | 10,068 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _transfer | function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr,... | /**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
10823,
12695
]
} | 10,069 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _approve | function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
| /**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/ | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
12808,
13009
]
} | 10,070 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _checkOnERC721Received | function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721... | /**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param to... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
13569,
14378
]
} | 10,071 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _beforeTokenTransfers | function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
| /**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
14861,
15025
]
} | 10,072 |
KevinZukiClub | KevinZukiClub.sol | 0x900de33d4b39512e2ae8c7bfdc77a0282dabf55b | Solidity | ERC721A | contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMin... | /**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support ... | NatSpecMultiLine | _afterTokenTransfers | function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
| /**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` ... | NatSpecMultiLine | v0.8.11+commit.d7f03943 | MIT | ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1 | {
"func_code_index": [
15432,
15595
]
} | 10,073 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | name | function name() public view virtual returns (string memory) {
return _name;
}
| /**
* @dev Returns the name of the token.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
874,
970
]
} | 10,074 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | symbol | function symbol() public view virtual returns (string memory) {
return _symbol;
}
| /**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
1084,
1184
]
} | 10,075 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | decimals | function decimals() public view virtual returns (uint8) {
return _decimals;
}
| /**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
1817,
1913
]
} | 10,076 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | totalSupply | function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
| /**
* @dev See {IERC20-totalSupply}.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
1973,
2086
]
} | 10,077 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | balanceOf | function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
| /**
* @dev See {IERC20-balanceOf}.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
2144,
2276
]
} | 10,078 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | transfer | function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
| /**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
2484,
2664
]
} | 10,079 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | allowance | function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
| /**
* @dev See {IERC20-allowance}.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
2722,
2878
]
} | 10,080 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | approve | function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
| /**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
3020,
3194
]
} | 10,081 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | transferFrom | function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
| /**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
3671,
3997
]
} | 10,082 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | increaseAllowance | function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
| /**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` c... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
4401,
4624
]
} | 10,083 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | decreaseAllowance | function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
| /**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` c... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
5122,
5396
]
} | 10,084 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _transfer | function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sen... | /**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
*... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
5881,
6425
]
} | 10,085 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _mint | function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfe... | /** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
6702,
7085
]
} | 10,086 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _burn | function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _to... | /**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
7413,
7836
]
} | 10,087 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _approve | function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amoun... | /**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero a... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
8269,
8620
]
} | 10,088 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _setupDecimals | function _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
| /**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/ | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
8947,
9050
]
} | 10,089 |
FLikeToken | @openzeppelin/contracts/token/ERC20/ERC20.sol | 0x3eb06877ace1c1c44f12bd3d2d313eb1c70d764e | Solidity | ERC20 | contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _dec... | /**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our... | NatSpecMultiLine | _beforeTokenTransfer | function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
| /**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* -... | NatSpecMultiLine | v0.7.6+commit.7338295f | MIT | ipfs://49720dd6996875b4f8c375dd171b8e13a2dc59572ede5e3b3afe37472eec9bb8 | {
"func_code_index": [
9648,
9745
]
} | 10,090 |
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | callers | function callers() external view returns (address[] memory _callers);
| // getters | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
812,
883
]
} | 10,091 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | gasBuffer | function gasBuffer() external view returns (uint256 _gasBuffer);
| // global bond | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
1000,
1066
]
} | 10,092 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | caller | function caller(address _caller) external view returns (bool _enabled);
| // global caller | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
1321,
1394
]
} | 10,093 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | hashReportedBy | function hashReportedBy(bytes32 _hash) external view returns (address _reportedBy);
| // global hash | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
1522,
1607
]
} | 10,094 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | setGasBuffer | function setGasBuffer(uint256 _gasBuffer) external;
| // governor | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
1623,
1676
]
} | 10,095 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | bond | function bond() external payable;
| // caller | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
1846,
1881
]
} | 10,096 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | validateHash | function validateHash(
address _caller,
bytes32 _hash,
uint256 _penalty
) external returns (bool);
| // stealth-contract | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
2338,
2452
]
} | 10,097 | ||||
StealthRelayer | contracts/interfaces/IStealthVault.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | IStealthVault | interface IStealthVault {
//events
event Bonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event Unbonded(address indexed _caller, uint256 _amount, uint256 _finalBond);
event ReportedHash(bytes32 _hash, address _reportedBy);
event PenaltyApplied(bytes32 _hash, address _caller, uint256 _pen... | reportHash | function reportHash(bytes32 _hash) external;
| // watcher | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
2467,
2513
]
} | 10,098 | ||||
StealthRelayer | contracts/StealthRelayer.sol | 0x0a61c2146a7800bdc278833f21ebf56cd660ee2a | Solidity | StealthRelayer | contract StealthRelayer is Governable, CollectableDust, StealthTx, IStealthRelayer {
using Address for address;
using EnumerableSet for EnumerableSet.AddressSet;
EnumerableSet.AddressSet internal _jobs;
bool public override forceBlockProtection;
address public override caller;
constructor(address _stealt... | /*
* YearnStealthRelayer
*/ | Comment | addJobs | function addJobs(address[] calldata _jobsList) external override onlyGovernor {
for (uint256 i = 0; i < _jobsList.length; i++) {
_addJob(_jobsList[i]);
}
}
| // Setup trusted contracts to call (jobs) | LineComment | v0.8.4+commit.c7e474f2 | {
"func_code_index": [
2850,
3023
]
} | 10,099 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.