编译器
0.8.23+commit.f704f362
文件 1 的 29:Address.sol
pragma solidity ^0.8.20;
library Address {
error AddressInsufficientBalance(address account);
error AddressEmptyCode(address target);
error FailedInnerCall();
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
function _revert(bytes memory returndata) private pure {
if (returndata.length > 0) {
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}
文件 2 的 29:Base64.sol
pragma solidity ^0.8.20;
library Base64 {
string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
function encode(bytes memory data) internal pure returns (string memory) {
if (data.length == 0) return "";
string memory table = _TABLE;
string memory result = new string(4 * ((data.length + 2) / 3));
assembly {
let tablePtr := add(table, 1)
let resultPtr := add(result, 32)
for {
let dataPtr := data
let endPtr := add(data, mload(data))
} lt(dataPtr, endPtr) {
} {
dataPtr := add(dataPtr, 3)
let input := mload(dataPtr)
mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
resultPtr := add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
resultPtr := add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
resultPtr := add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
resultPtr := add(resultPtr, 1)
}
switch mod(mload(data), 3)
case 1 {
mstore8(sub(resultPtr, 1), 0x3d)
mstore8(sub(resultPtr, 2), 0x3d)
}
case 2 {
mstore8(sub(resultPtr, 1), 0x3d)
}
}
return result;
}
}
文件 3 的 29:Configuration.sol
pragma solidity 0.8.23;
import { IERC20 } from "@openzeppelin/contracts/interfaces/IERC20.sol";
import { IVestMembership } from "src/IVestMembership.sol";
import { IVestMembershipDescriptor } from "src/VestMembershipDescriptor.sol";
library Presale {
struct Fees {
uint16 tokenANumerator;
uint16 tokenADenominator;
uint16 tokenBNumerator;
uint16 tokenBDenominator;
}
struct Configuration {
Fees fees;
IERC20 tokenA;
IERC20 tokenB;
address manager;
address beneficiary;
uint256 tgeTimestamp;
uint256 listingTimestamp;
uint256 claimbackPeriod;
}
}
library Membership {
struct Fees {
uint16 numerator;
uint16 denominator;
}
struct Configuration {
Fees fees;
IVestMembership.Metadata metadata;
IVestMembershipDescriptor descriptor;
}
}
文件 4 的 29:Context.sol
pragma solidity ^0.8.20;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
文件 5 的 29:ERC20Helper.sol
pragma solidity 0.8.23;
import { IERC20 } from "@openzeppelin/contracts/interfaces/IERC20.sol";
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import { IWETH } from "src/libraries/IWETH.sol";
library ERC20Helper {
function transfer(IERC20 token, address to, uint256 value) internal {
SafeERC20.safeTransfer(token, to, value);
}
function transferFrom(IERC20 token, address sender, address to, uint256 value) internal returns (uint256) {
uint256 balance = token.balanceOf(to);
SafeERC20.safeTransferFrom(token, sender, to, value);
return token.balanceOf(to) - balance;
}
function decimals(IERC20 token) internal view returns (uint256) {
return IERC20Metadata(address(token)).decimals();
}
function deposit(IERC20 token, address sender, address recipient, uint256 expected, uint256 actual)
internal
returns (uint256)
{
if (actual < expected) return 0;
uint256 amount = actual > expected ? expected : actual;
uint256 balance = token.balanceOf(recipient);
IWETH(address(token)).deposit{ value: amount }();
if (token.balanceOf(recipient) < balance + amount) return 0;
if (actual > amount) Address.sendValue(payable(sender), actual - amount);
return amount;
}
}
文件 6 的 29:EnumerableSet.sol
pragma solidity ^0.8.20;
library EnumerableSet {
struct Set {
bytes32[] _values;
mapping(bytes32 value => uint256) _positions;
}
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
function _remove(Set storage set, bytes32 value) private returns (bool) {
uint256 position = set._positions[value];
if (position != 0) {
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
set._values[valueIndex] = lastValue;
set._positions[lastValue] = position;
}
set._values.pop();
delete set._positions[value];
return true;
} else {
return false;
}
}
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
struct Bytes32Set {
Set _inner;
}
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
assembly {
result := store
}
return result;
}
struct AddressSet {
Set _inner;
}
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
assembly {
result := store
}
return result;
}
struct UintSet {
Set _inner;
}
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
assembly {
result := store
}
return result;
}
}
文件 7 的 29:Errors.sol
pragma solidity 0.8.23;
library Errors {
error Forbidden();
error UnacceptableValue();
error UnacceptableReference();
error Unauthorized(address account);
error AccountMismatch(address account);
error DenominatorZero();
}
文件 8 的 29:IERC165.sol
pragma solidity ^0.8.20;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
文件 9 的 29:IERC20.sol
pragma solidity ^0.8.20;
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 value) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
文件 10 的 29:IERC20Metadata.sol
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
文件 11 的 29:IERC20Permit.sol
pragma solidity ^0.8.20;
interface IERC20Permit {
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
function nonces(address owner) external view returns (uint256);
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
文件 12 的 29:IERC2981.sol
pragma solidity ^0.8.20;
import {IERC165} from "../utils/introspection/IERC165.sol";
interface IERC2981 is IERC165 {
function royaltyInfo(
uint256 tokenId,
uint256 salePrice
) external view returns (address receiver, uint256 royaltyAmount);
}
文件 13 的 29:IERC721.sol
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
interface IERC721 is IERC165 {
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
function balanceOf(address owner) external view returns (uint256 balance);
function ownerOf(uint256 tokenId) external view returns (address owner);
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
function safeTransferFrom(address from, address to, uint256 tokenId) external;
function transferFrom(address from, address to, uint256 tokenId) external;
function approve(address to, uint256 tokenId) external;
function setApprovalForAll(address operator, bool approved) external;
function getApproved(uint256 tokenId) external view returns (address operator);
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
文件 14 的 29:IERC721Enumerable.sol
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
interface IERC721Enumerable is IERC721 {
function totalSupply() external view returns (uint256);
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
function tokenByIndex(uint256 index) external view returns (uint256);
}
文件 15 的 29:IVestFeeCollectorProvider.sol
pragma solidity 0.8.23;
interface IVestFeeCollectorProvider {
function getFeeCollector() external view returns (address);
}
文件 16 的 29:IVestMembership.sol
pragma solidity 0.8.23;
import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import { IERC2981 } from "@openzeppelin/contracts/interfaces/IERC2981.sol";
import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
interface IVestMembership is IERC2981, IERC721, IERC721Enumerable {
struct Usage {
uint256 max;
uint256 current;
}
struct Metadata {
address token;
string color;
string description;
}
struct Attributes {
uint256 price;
uint256 allocation;
uint256 claimbackPeriod;
uint32 tgeNumerator;
uint32 tgeDenominator;
uint32 cliffDuration;
uint32 cliffNumerator;
uint32 cliffDenominator;
uint32 vestingPeriodCount;
uint32 vestingPeriodDuration;
uint8 tradeable;
}
function mint(address owner_, uint256 roundId, uint256 currentUsage, uint256 maxUsage, Attributes memory attributes)
external
returns (uint256);
function extend(uint256 publicId, uint256 amount) external returns (uint256 newId);
function reduce(uint256 publicId, uint256 amount) external returns (uint256 newId);
function consume(uint256 publicId, uint256 amount) external returns (uint256 newId);
function getStartTimestamp() external view returns (uint256);
function getUsage(uint256 publicId) external view returns (Usage memory);
function getRoundId(uint256 publicId) external view returns (uint256);
function getAttributes(uint256 publicId) external view returns (Attributes memory);
function unlocked(uint256 publicId) external view returns (uint256);
}
文件 17 的 29:IVestPresaleScheduler.sol
pragma solidity 0.8.23;
interface IVestPresaleScheduler {
function getTgeTimestamp() external view returns (uint256);
function getListingTimestamp() external view returns (uint256);
}
文件 18 的 29:IWETH.sol
pragma solidity 0.8.23;
interface IWETH {
function deposit() external payable;
}
文件 19 的 29:Math.sol
pragma solidity ^0.8.20;
library Math {
error MathOverflowedMulDiv();
enum Rounding {
Floor,
Ceil,
Trunc,
Expand
}
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);
}
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
function average(uint256 a, uint256 b) internal pure returns (uint256) {
return (a & b) + (a ^ b) / 2;
}
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
return a / b;
}
return a == 0 ? 0 : (a - 1) / b + 1;
}
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
uint256 prod0 = x * y;
uint256 prod1;
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
if (prod1 == 0) {
return prod0 / denominator;
}
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
uint256 remainder;
assembly {
remainder := mulmod(x, y, denominator)
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
uint256 twos = denominator & (0 - denominator);
assembly {
denominator := div(denominator, twos)
prod0 := div(prod0, twos)
twos := add(div(sub(0, twos), twos), 1)
}
prod0 |= prod1 * twos;
uint256 inverse = (3 * denominator) ^ 2;
inverse *= 2 - denominator * inverse;
inverse *= 2 - denominator * inverse;
inverse *= 2 - denominator * inverse;
inverse *= 2 - denominator * inverse;
inverse *= 2 - denominator * inverse;
inverse *= 2 - denominator * inverse;
result = prod0 * inverse;
return result;
}
}
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 result = 1 << (log2(a) >> 1);
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
文件 20 的 29:MathHelper.sol
pragma solidity 0.8.23;
library MathHelper {
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? b : a;
}
}
文件 21 的 29:MembershipSVG.sol
pragma solidity 0.8.23;
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
library MembershipSVG {
using Strings for uint256;
struct Params {
string color;
string title;
uint256 max;
uint256 current;
}
string internal constant ELEMENT_OPENING =
'<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1500 1500" style="enable-background:new 0 0 1500 1500;" xml:space="preserve">';
string internal constant ELEMENT_CLOSING = "</svg>";
string internal constant BACKGROUND =
'<rect fill="#1c242c" width="1500" height="1500"/><path fill="#20262F" d="M479.2,371.4h-51.6v31.2l-31.2-31.2h-31.5l62.7,62.7v547.2L217.1,771v-51.2l203.3,203.3v-31.5l-182-182v-51.2l182,182V809L49.2,437.8v31.6l94.6,94.6v51.2l-94.6-94.6v31.5l94.6,94.6v51.2l-57.7-57.7v31.5l57.7,57.7v51.3L49.2,686v31.5l94.6,94.6v51.2l-94.6-94.6v31.5l323,323.1H321L49.2,851.4v31.5l94.6,94.6v51.2l94.6,94.7v31.5l-94.6-94.6v51.2l-94.6-94.6v31.5l234.4,234.4h31.5l-25.5-25.5h133.9l3.9,3.9l21.7,21.7h31.5l-41.3-41.3l25.6-25.6l66.9,66.9h31.3l-82.6-82.6l25.6-25.6L614.4,1283h31.5l-124-124V776.9l122.8,122.8l66.4-66.4V603.6L479.2,371.4z M282.6,950.8l144.9,144.9v27.5h-23.7L282.6,1002V950.8L282.6,950.8zM427.6,1013.1v51.2L238.4,875v-51.2L427.6,1013.1z M522,611.4l65.5,65.5v51.2L522,662.5V611.4z M552.2,558.8l131,130.8v51.2L552.2,610V558.8z M522,445.9l94.6,94.6v51.2L522,497.1V445.9z M232.6,1282.9L49.2,1099.5v31.5l94.6,94.6l57.3,57.3H232.6zM529.2,1114.7l168,168h14v-17.5l-182-182V1114.7z M711.2,1131.4v-31.5l-182-182v31.5L711.2,1131.4z M659,1161.8v-31.5l-129.7-129.7v31.5L659,1161.8z M529.2,866.6l182,182v-31.5l-182-182V866.6z M65.5,371.4H49.2v15.2l371.2,371.2v-31.6L65.5,371.4z M118.3,1282.9l31.6,0.1L49.2,1182.3v31.5L118.3,1282.9L118.3,1282.9z M711.2,469.7v-31.5l-66.8-66.8H613L711.2,469.7L711.2,469.7z M616.6,426.3l-55-55h-31.5l86.4,86.4l94.6,94.6v-31.5L616.6,426.3z M711.2,371.4h-15.6l15.6,15.6V371.4z M230.9,371.4h-31.5l220.9,220.9v-31.5L230.9,371.4z M313.6,371.4h-31.5l138.3,138.2v-31.5L313.6,371.4z M233.8,488.4L420.4,675v-31.5L265.3,488.4H233.8z"/>';
string internal constant LOGO =
'<circle style="fill:none;stroke-miterlimit:10;" cx="415.6" cy="856.3" r="69.4"/><path style="fill:none;stroke-miterlimit:10;" d="M374,607.5c77.6-12.9,160.1,10.6,220,70.5c37.6,37.6,60.9,84.2,69.8,132.8l-39.1,4.8l-117.6,14.3c-4.3-15-12.4-29.1-24.1-40.9c-20.2-20.2-47.2-29.4-73.6-27.7l-26.5-115.4L374,607.5z"/><path style="fill:none;stroke-miterlimit:10;" d="M265,705.7c25.5-25.5,55.9-43.2,88.1-53.1l26.6,115.4c-11.4,4.6-22.1,11.6-31.4,20.9c-9.3,9.3-16.3,20.1-20.9,31.6l-115.5-26.3C221.7,761.8,239.4,731.3,265,705.7z"/><path style="fill:none;stroke-miterlimit:10;" d="M482.9,923.6c17.6-17.6,26.9-40.5,27.8-63.6l117.6-14.3c2.8,58-17.9,116.9-62.1,161.1c-47.5,47.5-112,67.9-174,61.1l21.4-116.5C438.7,952,463.9,942.7,482.9,923.6z"/><path style="fill:none;stroke-miterlimit:10;" d="M166.7,815.1l38.4,8.8l115.5,26.4c-1.7,26.3,7.6,53.3,27.7,73.4c10.3,10.3,22.5,17.8,35.4,22.4l-21.4,116.5l-7.1,38.7c-43.2-10.6-84.2-32.8-117.9-66.6C177.5,974.9,154,892.6,166.7,815.1z"/><line style="fill:none;stroke-miterlimit:10;" x1="644.9" y1="813.1" x2="660.9" y2="797.1"/><line style="fill:none;stroke-miterlimit:10;" x1="612.1" y1="817.1" x2="654.4" y2="774.8"/><line style="fill:none;stroke-miterlimit:10;" x1="579.3" y1="821" x2="646.3" y2="754.1"/><line style="fill:none;stroke-miterlimit:10;" x1="546.5" y1="825" x2="636.7" y2="734.8"/><line style="fill:none;stroke-miterlimit:10;" x1="513.7" y1="829" x2="625.9" y2="716.8"/><line style="fill:none;stroke-miterlimit:10;" x1="500.6" y1="813.3" x2="613.7" y2="700.1"/><line style="fill:none;stroke-miterlimit:10;" x1="489.2" y1="795.9" x2="600.4" y2="684.6"/><line style="fill:none;stroke-miterlimit:10;" x1="474.6" y1="781.6" x2="586" y2="670.3"/><line style="fill:none;stroke-miterlimit:10;" x1="456.9" y1="770.5" x2="570.4" y2="657.1"/><line style="fill:none;stroke-miterlimit:10;" x1="435.4" y1="763.2" x2="553.5" y2="645.1"/><line style="fill:none;stroke-miterlimit:10;" x1="409.2" y1="760.5" x2="535.5" y2="634.3"/><line style="fill:none;stroke-miterlimit:10;" x1="403.8" y1="737.1" x2="516.1" y2="624.9"/><line style="fill:none;stroke-miterlimit:10;" x1="398.4" y1="713.7" x2="495.2" y2="616.9"/><line style="fill:none;stroke-miterlimit:10;" x1="393.1" y1="690.2" x2="472.7" y2="610.6"/><line style="fill:none;stroke-miterlimit:10;" x1="387.7" y1="666.8" x2="448.3" y2="606.2"/><line style="fill:none;stroke-miterlimit:10;" x1="382.3" y1="643.4" x2="421.5" y2="604.1"/><line style="fill:none;stroke-miterlimit:10;" x1="376.9" y1="619.9" x2="391.6" y2="605.2"/>';
string internal constant DECORATORS =
'<path style="fill:none;stroke:#383838;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:4.0182,10.0455;" d="M799.2,1357c-13.1-21.2-20.8-47.4-20.8-75.6c0-20.8,4.2-40.4,11.6-57.8"/><polygon style="fill:#FFFFFF;" points="92.9,78.2 72.6,97.5 72.6,139.5 81.4,148.2 135.1,148.2 144.8,158 144.8,254.2 138.5,247.8 138.5,173.8 133,179.3 133,246.1 133,261.5 212.7,341.3 267.8,341.3 338,411.7 262.6,411.7 297.7,446.8 278.9,446.8 233.2,401.1 196.1,401.1 62.8,267.8 62.8,211.9 73.4,201.5 115.6,201.5 102,187.9 63.4,187.9 63.4,94.3 81,78.2 "/><polyline style="fill:none;stroke:#FFFFFF;stroke-miterlimit:10;" points="280.3,446.3 716.9,446.3 755.4,407.8 973.2,407.8 "/><circle style="fill:none;stroke:#FFFFFF;stroke-miterlimit:10;" cx="978" cy="407.8" r="4.8"/><circle style="fill:none;stroke:#FFFFFF;stroke-miterlimit:10;" cx="674.8" cy="65.7" r="4.8"/><polyline style="fill:none;stroke:#FFFFFF;stroke-miterlimit:10;" points="69.8,100.3 105.2,66.4 280.3,66.4 305.4,91.5 649,91.5 671.6,69 "/><path style="fill:#FFFFFF;" d="M1408.7,290.1L1209.4,90.8l-28.5-0.2L1380.3,290h28.4L1408.7,290.1L1408.7,290.1z M1387.1,299.7h-12.2l-186.8-186.8h-34.7L1110.5,70h-17.7l32.9,32.9h-70.5l65.7,66h51.5l74.7,74.7V258l135.1,135.1h55.5l13.6-13.6V364L1387.1,299.7z"/>';
function generate(Params memory params) internal pure returns (string memory) {
uint256 percentage = params.max > 0 ? params.current * 100 / params.max : 0;
uint256 progress = 10000 - (percentage * 100);
return string.concat(
ELEMENT_OPENING,
BACKGROUND,
cards(params.color, 100 - percentage),
elements(params.color, progress),
DECORATORS,
labels(params.title, params.max, params.current),
ELEMENT_CLOSING
);
}
function cards(string memory color, uint256 percentage) internal pure returns (string memory) {
return string.concat(
string.concat('<g fill="', color, '">'),
'<path d="M1343.7,522.3v-10.9l-24.9-24.9h-13.6l-3.3,3.1h-195.7l-18.6,18.6h-12.8l-3.5,3.1h-87.6l-2.9-2.9h-35.9l-2.9,2.9H829l-3.1-3.1h-9.1l-24.2,24.2v11.2l3,3v64.3l-3.1-2.5v4.9l3.1,2.6v6.4l-3.1-2.5v4.9l3.1,2.6v6.4l-3.1-2.5v4.9l3.1,2.6v61l-3.1-5.6V715l24.3,24.3h24.9l-3.3-3.1h175.8l-3.1,3.1h11.1l22.5,22.5h6.5l-3.3-3.1h248.4l9.8-9.8h4.4l13.1-13.1v-78.6l20.2-20.2v-23.9l-3.1-3.3v-84L1343.7,522.3z M1295.2,756.3H1047l-22.5-22.5H819.2l-21-21v-178l21-21h270.7l21.7-21.7h204.7l21.6,21.6v121.1l-20.2,20.2v78.6L1295.2,756.3z"/>',
'<path d="M1343.7,848.9V838l-24.9-24.9h-13.6l-3.3,3.1h-195.7l-18.6,18.6h-12.8l-3.5,3.1h-87.6l-2.9-2.9h-35.9l-2.9,2.9H829l-3.1-3.1h-9.1L792.6,859v11.2l3,3v64.3l-3.1-2.5v4.9l3.1,2.6v6.4l-3.1-2.5v4.9l3.1,2.6v6.4l-3.1-2.5v4.9l3.1,2.6v61l-3.1-5.6v20.9l24.3,24.3h24.9l-3.3-3.1h175.8l-3.1,3.1h11.1l22.5,22.5h6.5l-3.3-3.1h248.4l9.8-9.8h4.4l13.1-13.1v-78.6l20.2-20.2v-23.9l-3.1-3.3v-84L1343.7,848.9z M1295.2,1082.9H1047l-22.5-22.5H819.2l-21-21v-178l21-21h270.7l21.7-21.7h204.7l21.6,21.6v121.1l-20.2,20.2v78.6L1295.2,1082.9z"/>',
'<path d="M1337.8,1279.1L1337.8,1279.1c-2,0-3.7-1.6-3.7-3.7l0,0c0-2,1.6-3.7,3.7-3.7l0,0c2,0,3.7,1.6,3.7,3.7l0,0C1341.5,1277.5,1339.8,1279.1,1337.8,1279.1z"/>',
'<text transform="matrix(1 0 0 1 1066.4193 1071.1001)" style="font-size:28px; text-transform:uppercase; font-family:Futura,Arial,monospace; font-weight: 900">claimed</text>',
'<text transform="matrix(1 0 0 1 1057.7942 744.2)" style="font-size:28px; text-transform:uppercase; font-family:Futura,Arial,monospace; font-weight: 900">purchased</text>',
string.concat(
'<text transform="matrix(1 0 0 1 1066.1456 1290.5452)" style="font-size:28px; text-transform:uppercase; font-family:Futura,Arial,monospace; font-weight: 900">',
percentage.toString(),
"% left</text>"
),
"</g>"
);
}
function elements(string memory color, uint256 progress) internal pure returns (string memory) {
return string.concat(
string.concat('<g stroke="', color, '">'),
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;" d="M999.4,1354.6c-21.1,25.2-52.8,41.1-88.2,41.1c-63.5,0-115.1-51.6-115.1-115.1s51.6-115.1,115.1-115.1c8,0,15.7,0.8,23.2,2.4"/>',
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;" d="M954.2,1396.8c-57.4,21.3-123.2-2.8-152.5-58.4c-4-7.6-7.1-15.3-9.4-23.2"/>',
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;" d="M991,1186c11.9,10,22,22.4,29.8,36.9c14.7,28,17.7,59.1,10.6,87.7"/>',
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;" d="M1337.8,1285.2L1337.8,1285.2c-5.4,0-9.8-4.4-9.8-9.8l0,0c0-5.4,4.4-9.8,9.8-9.8l0,0c5.4,0,9.8,4.4,9.8,9.8l0,0C1347.6,1280.8,1343.2,1285.2,1337.8,1285.2z"/>',
'<polyline style="fill:none;stroke-width:2;stroke-miterlimit:10;" points="991,1363.6 1022.7,1395.2 1305.8,1395.2 1337.8,1363.2 1337.8,1275.4 "/>',
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6.1193,6.1193;" d="M943.5,1170.1c47.9,13.9,82.9,58.1,82.9,110.5c0,26-8.6,49.9-23.1,69.2"/>',
'<path style="fill:none;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6.0368,6.0368;" d="M861.9,1167.2c22.5-9.8,46.7-12.4,69.6-8.6"/>',
'<circle cx="911.3" cy="1280.6" r="84.8" style="fill:none;stroke:#393E4A;stroke-width:28;stroke-miterlimit:10;"/>',
string.concat(
'<circle cx="911.3" cy="1280.6" r="84.8" style="fill:none;stroke-width:28;stroke-miterlimit:10;" pathLength="10000" stroke-dasharray="10000" stroke-dashoffset="',
progress.toString(),
'" transform="rotate(-90)" transform-origin="911.3 1280.6"/>'
),
LOGO,
"</g>"
);
}
function labels(string memory title, uint256 max, uint256 current) internal pure returns (string memory) {
return string.concat(
string.concat(
'<text transform="matrix(1 0 0 1 209.3455 270.9893)" style="fill:#FFFFFF; font-family:Futura,Arial,monospace; font-weight: 900;" font-size="55px">',
title,
"</text>"
),
string.concat(
'<text transform="matrix(1 0 0 1 872.9004 644.1)" style="fill:#FFFFFF; font-family:Futura,Arial,monospace; font-weight: 900;" font-size="50px">',
max.toString(),
"</text>"
),
string.concat(
'<text transform="matrix(1 0 0 1 872.9005 966.0894)" style="fill:#FFFFFF; font-family:Futura,Arial,monospace; font-weight: 900;" font-size="50px">',
current.toString(),
"</text>"
)
);
}
}
文件 22 的 29:MerkleProof.sol
pragma solidity ^0.8.20;
library MerkleProof {
error MerkleProofInvalidMultiproof();
function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
uint256 leavesLen = leaves.length;
uint256 proofLen = proof.length;
uint256 totalHashes = proofFlags.length;
if (leavesLen + proofLen != totalHashes + 1) {
revert MerkleProofInvalidMultiproof();
}
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i]
? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
if (proofPos != proofLen) {
revert MerkleProofInvalidMultiproof();
}
unchecked {
return hashes[totalHashes - 1];
}
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
uint256 leavesLen = leaves.length;
uint256 proofLen = proof.length;
uint256 totalHashes = proofFlags.length;
if (leavesLen + proofLen != totalHashes + 1) {
revert MerkleProofInvalidMultiproof();
}
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i]
? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
if (proofPos != proofLen) {
revert MerkleProofInvalidMultiproof();
}
unchecked {
return hashes[totalHashes - 1];
}
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
文件 23 的 29:Round.sol
pragma solidity 0.8.23;
enum RoundState {
PENDING,
SALE,
VESTING
}
struct Round {
string name;
uint256 startTimestamp;
uint256 endTimestamp;
bytes32 whitelistRoot;
string proofsUri;
bytes attributes;
}
文件 24 的 29:SafeERC20.sol
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";
library SafeERC20 {
using Address for address;
error SafeERC20FailedOperation(address token);
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
function _callOptionalReturn(IERC20 token, bytes memory data) private {
bytes memory returndata = address(token).functionCall(data);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
(bool success, bytes memory returndata) = address(token).call(data);
return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
}
}
文件 25 的 29:SignedMath.sol
pragma solidity ^0.8.20;
library SignedMath {
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
function average(int256 a, int256 b) internal pure returns (int256) {
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
function abs(int256 n) internal pure returns (uint256) {
unchecked {
return uint256(n >= 0 ? n : -n);
}
}
}
文件 26 的 29:Strings.sol
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
error StringsInsufficientHexLength(uint256 value, uint256 length);
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
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_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}
文件 27 的 29:VestMembershipDescriptor.sol
pragma solidity 0.8.23;
import { Base64 } from "@openzeppelin/contracts/utils/Base64.sol";
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import { IVestMembership } from "src/IVestMembership.sol";
import { MembershipSVG } from "src/libraries/MembershipSVG.sol";
interface IVestMembershipDescriptor {
function name(IVestMembership.Metadata memory metadata) external view returns (string memory);
function symbol(IVestMembership.Metadata memory metadata) external view returns (string memory);
function tokenURI(
uint256 start,
IVestMembership.Usage memory usage,
IVestMembership.Metadata memory metadata,
IVestMembership.Attributes memory attributes
) external view returns (string memory);
}
contract VestMembershipDescriptor is IVestMembershipDescriptor {
using Strings for address;
using Strings for uint32;
using Strings for uint256;
function name(IVestMembership.Metadata memory metadata) public view returns (string memory) {
string memory name_ = IERC20Metadata(address(metadata.token)).name();
return string.concat(name_, " Vesting");
}
function symbol(IVestMembership.Metadata memory metadata) public view returns (string memory) {
string memory symbol_ = IERC20Metadata(address(metadata.token)).symbol();
return string.concat("v", symbol_);
}
function tokenURI(
uint256 start,
IVestMembership.Usage memory usage,
IVestMembership.Metadata memory metadata,
IVestMembership.Attributes memory attributes
) public view virtual returns (string memory) {
string memory json = string.concat(
'{"attributes":',
_traits(start, usage, metadata, attributes),
',"description":"',
metadata.description,
'","name":"',
_title(metadata),
'","image":"',
_image(usage, metadata),
'"}'
);
return string.concat("data:application/json;base64,", Base64.encode(bytes(json)));
}
function _title(IVestMembership.Metadata memory metadata) internal view returns (string memory) {
string memory symbol_ = IERC20Metadata(address(metadata.token)).symbol();
return string.concat("Vesting of ", symbol_);
}
function _image(IVestMembership.Usage memory usage, IVestMembership.Metadata memory metadata)
internal
view
returns (string memory)
{
uint256 denominator = 10 ** IERC20Metadata(address(metadata.token)).decimals();
string memory svg = MembershipSVG.generate(
MembershipSVG.Params({
color: metadata.color,
title: name(metadata),
max: usage.max / denominator,
current: usage.current / denominator
})
);
return string.concat("data:image/svg+xml;base64,", Base64.encode(bytes(svg)));
}
function _traits(
uint256 start,
IVestMembership.Usage memory usage,
IVestMembership.Metadata memory metadata,
IVestMembership.Attributes memory attributes
) internal view returns (string memory) {
uint256 denominator = 10 ** IERC20Metadata(address(metadata.token)).decimals();
string memory traits0 = string.concat(
'[{"trait_type":"Usage","display_type":"boost_percentage","value":',
(usage.max > 0 ? usage.current * 100 / usage.max : 0).toString(),
'},{"trait_type":"Vested tokens","display_type":"number","value":',
Strings.toString(usage.max / denominator),
'},{"trait_type":"Claimed tokens","display_type":"number","value":',
Strings.toString(usage.current / denominator),
'},{"trait_type":"TGE","display_type":"boost_percentage","value":',
(attributes.tgeDenominator > 0 ? attributes.tgeNumerator * 100 / attributes.tgeDenominator : 0).toString(),
'},{"trait_type":"Vesting start","display_type":"date","value":',
start.toString(),
'},{"trait_type":"Vesting end","display_type":"date","value":',
(start + attributes.cliffDuration + (attributes.vestingPeriodCount * attributes.vestingPeriodDuration))
.toString()
);
string memory traits1 = string.concat(
'},{"trait_type":"Cliff duration","value":"',
_getCliffDurationText(attributes.cliffDuration),
'"},{"trait_type":"Cliff unlock","display_type":"boost_percentage","value":',
(attributes.cliffDenominator > 0 ? attributes.cliffNumerator * 100 / attributes.cliffDenominator : 0)
.toString(),
'},{"trait_type":"Unlock frequency","value":"',
_getUnlockFrequencyText(attributes.vestingPeriodDuration),
'"},{"trait_type":"Vested token name","value":"',
IERC20Metadata(address(metadata.token)).name(),
'"},{"trait_type":"Vested token symbol","value":"',
IERC20Metadata(address(metadata.token)).symbol(),
'"},{"trait_type":"Vested token address","value":"',
Strings.toHexString(uint160(metadata.token), 20),
'"}]'
);
return string.concat(traits0, traits1);
}
function _getCliffDurationText(uint256 value) internal pure virtual returns (string memory) {
if (value == 0) return "no cliff";
(uint256 period, string memory label) = _humanize(value);
return string.concat(period.toString(), " ", label);
}
function _getUnlockFrequencyText(uint256 value) internal pure virtual returns (string memory) {
if (value == 0) return "none";
(uint256 period, string memory label) = _humanize(value);
if (period == 1) return string.concat("every ", label);
return string.concat("every ", period.toString(), " ", label);
}
function _humanize(uint256 value) internal pure virtual returns (uint256, string memory) {
if (value < 1 hours) return _pluralize(value / 1 minutes, "minute", "minutes");
if (value < 1 days) return _pluralize(value / 1 hours, "hour", "hours");
return _pluralize(value / 1 days, "day", "days");
}
function _pluralize(uint256 value, string memory singular, string memory plural)
internal
pure
virtual
returns (uint256, string memory)
{
return (value, value == 1 ? singular : plural);
}
}
文件 28 的 29:VestPresale.sol
pragma solidity 0.8.23;
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
import { IERC20 } from "@openzeppelin/contracts/interfaces/IERC20.sol";
import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import { MerkleProof } from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { Withdrawable } from "delegatecall/Withdrawable.sol";
import { Errors } from "src/libraries/Errors.sol";
import { MathHelper } from "src/libraries/MathHelper.sol";
import { ERC20Helper } from "src/libraries/ERC20Helper.sol";
import { Round, RoundState } from "src/types/Round.sol";
import { Presale } from "src/types/Configuration.sol";
import { IVestMembership } from "src/IVestMembership.sol";
import { IVestPresaleScheduler } from "src/IVestPresaleScheduler.sol";
import { IVestFeeCollectorProvider } from "src/IVestFeeCollectorProvider.sol";
contract VestPresale is Context, Withdrawable, IVestPresaleScheduler {
using EnumerableSet for EnumerableSet.UintSet;
uint256 internal constant ROUND_LOCK_PERIOD = 1 hours;
IERC20 public immutable tokenA;
IERC20 public immutable tokenB;
IVestMembership public immutable membership;
IVestFeeCollectorProvider public immutable feeCollectorProvider;
address public manager;
address public beneficiary;
uint256 public liquidityA;
uint256 public liquidityB;
uint256 public nonClaimableBackTokenB;
uint256 internal tgeTimestamp;
uint256 internal listingTimestamp;
uint256 public immutable claimbackPeriod;
mapping(uint256 roundId => mapping(bytes32 => bool)) public roundParticipants;
uint256 internal roundSerialId;
Presale.Fees internal fees;
EnumerableSet.UintSet internal roundsIds;
mapping(uint256 roundId => Round round) internal rounds;
event Claimed(uint256 indexed vMembershipId, uint256 amountA);
event ClaimedBack(uint256 indexed vMembershipId, uint256 amountA);
event DepositedA(uint256 amount);
event WithdrawnA(uint256 amount);
event WithdrawnB(uint256 amount);
event RoundUpdated(uint256 indexed id);
event ManagerUpdated(address current);
event BeneficiaryUpdated(address current);
event ListingTimestampUpdated(uint256 timestamp);
event TgeTimestampUpdated(uint256 value);
error RoundIsLocked(uint256 id);
error RoundNotExists(uint256 id);
error RoundStateMismatch(uint256 id, RoundState current, RoundState expected);
error ClaimNotAllowed(uint256 membershipId);
error ClaimbackNotAllowed(uint256 membershipId);
error CliffWithImmediateUnlock();
error VestingWithImmediateUnlock();
error CliffLikeVesting();
error VestingWithoutUnlocks();
error CliffHeightWithoutSubsequentUnlocks();
error VestingSize();
error TokenWithTransferFees(address tokenAddress);
error OutOfLiquidityA();
error AlreadyRoundParticipant(uint256 roundId, address account);
modifier protectedWithdrawal() override {
if (_msgSender() != manager) revert Errors.Unauthorized(_msgSender());
_;
}
modifier onlyManager(address account) {
if (account != manager) revert Errors.Unauthorized(account);
_;
}
modifier onlyBeneficiary(address account) {
if (account != beneficiary) revert Errors.Unauthorized(account);
_;
}
modifier onlyMember(uint256 membershipId) {
if (membership.ownerOf(membershipId) != _msgSender()) revert Errors.AccountMismatch(_msgSender());
_;
}
modifier onlyRoundInState(uint256 roundId, RoundState expected) {
RoundState current = getRoundState(roundId);
if (current != expected) revert RoundStateMismatch(roundId, current, expected);
_;
}
constructor(
IVestMembership membership_,
IVestFeeCollectorProvider feeCollectorProvider_,
Presale.Configuration memory configuration,
Round[] memory rounds_
) {
if (address(membership_) == address(0)) revert Errors.UnacceptableReference();
if (address(feeCollectorProvider_) == address(0)) revert Errors.UnacceptableReference();
if (address(configuration.tokenA) == address(0)) revert Errors.UnacceptableReference();
if (address(configuration.tokenB) == address(0)) revert Errors.UnacceptableReference();
if (configuration.manager == address(0)) revert Errors.UnacceptableReference();
if (configuration.beneficiary == address(0)) revert Errors.UnacceptableReference();
if (configuration.listingTimestamp != 0 && configuration.tgeTimestamp == 0) {
revert Errors.UnacceptableValue();
}
if (configuration.listingTimestamp != 0 && configuration.tgeTimestamp > configuration.listingTimestamp) {
revert Errors.UnacceptableValue();
}
fees = configuration.fees;
tokenB = configuration.tokenB;
tokenA = configuration.tokenA;
manager = configuration.manager;
beneficiary = configuration.beneficiary;
membership = membership_;
feeCollectorProvider = feeCollectorProvider_;
tgeTimestamp = configuration.tgeTimestamp;
claimbackPeriod = configuration.claimbackPeriod;
listingTimestamp = configuration.listingTimestamp;
uint256 size = rounds_.length;
for (uint256 i = 0; i < size; i++) {
_addRound(rounds_[i]);
}
}
function claim(uint256 membershipId) external onlyMember(membershipId) returns (uint256) {
IVestMembership.Usage memory usage = membership.getUsage(membershipId);
if (usage.current == 0) {
uint256 timestamp = block.timestamp;
if (tgeTimestamp == 0 || timestamp < tgeTimestamp) revert ClaimNotAllowed(membershipId);
IVestMembership.Attributes memory attributes = membership.getAttributes(membershipId);
if (attributes.price > 0) {
uint256 denominator = 10 ** ERC20Helper.decimals(tokenA);
unchecked {
nonClaimableBackTokenB += usage.max * attributes.price / denominator;
}
}
}
uint256 releasable = membership.unlocked(membershipId) - usage.current;
if (releasable == 0) revert ClaimNotAllowed(membershipId);
uint256 newId = membership.consume(membershipId, releasable);
ERC20Helper.transfer(tokenA, _msgSender(), releasable);
emit Claimed(membershipId, releasable);
return newId;
}
function buy(uint256 roundId, uint256 amountA)
external
payable
onlyRoundInState(roundId, RoundState.SALE)
returns (uint256)
{
IVestMembership.Attributes memory attributes =
abi.decode(rounds[roundId].attributes, (IVestMembership.Attributes));
_requireCallerCanParticipateInSale(roundId, attributes);
return _buy(roundId, amountA, attributes);
}
function buy(
uint256 roundId,
uint256 amountA,
IVestMembership.Attributes memory attributes,
bytes32[] calldata proof
) external payable onlyRoundInState(roundId, RoundState.SALE) returns (uint256) {
_requireValidAttributes(attributes);
_requireCallerIsWhitelisted(roundId, attributes, proof);
_requireCallerCanParticipateInSale(roundId, attributes);
return _buy(roundId, amountA, attributes);
}
function extend(uint256 membershipId, uint256 amountA)
external
payable
onlyRoundInState(membership.getRoundId(membershipId), RoundState.SALE)
onlyMember(membershipId)
returns (uint256)
{
IVestMembership.Usage memory usage = membership.getUsage(membershipId);
IVestMembership.Attributes memory attributes = membership.getAttributes(membershipId);
uint256 released = _pay(usage.max, attributes.allocation, attributes.price, amountA);
if (attributes.price > 0 && usage.current > 0) {
uint256 denominator = 10 ** ERC20Helper.decimals(tokenA);
unchecked {
nonClaimableBackTokenB += amountA * attributes.price / denominator;
}
}
return membership.extend(membershipId, released);
}
function claimback(uint256 membershipId, uint256 amountA)
external
onlyMember(membershipId)
returns (uint256 newPublicId)
{
if (amountA == 0) revert ClaimbackNotAllowed(membershipId);
IVestMembership.Attributes memory attributes = membership.getAttributes(membershipId);
if (attributes.claimbackPeriod == 0) revert ClaimbackNotAllowed(membershipId);
uint256 period = MathHelper.min(claimbackPeriod, attributes.claimbackPeriod);
if (listingTimestamp != 0 && block.timestamp >= listingTimestamp + period) {
revert ClaimbackNotAllowed(membershipId);
}
IVestMembership.Usage memory usage = membership.getUsage(membershipId);
if (usage.current > 0) revert ClaimbackNotAllowed(membershipId);
uint256 claimableBackA = MathHelper.min(amountA, usage.max);
uint256 denominatorA = 10 ** ERC20Helper.decimals(tokenA);
uint256 claimableBackB = claimableBackA * attributes.price / denominatorA;
if (claimableBackB == 0) revert ClaimbackNotAllowed(membershipId);
unchecked {
liquidityA += claimableBackA;
liquidityB -= claimableBackB;
}
newPublicId = membership.reduce(membershipId, claimableBackA);
ERC20Helper.transfer(tokenB, _msgSender(), claimableBackB);
emit ClaimedBack(membershipId, claimableBackA);
}
function updateManager(address value) external onlyManager(_msgSender()) {
if (value == address(0)) revert Errors.UnacceptableReference();
manager = value;
emit ManagerUpdated(value);
}
function updateBeneficiary(address value) external onlyBeneficiary(_msgSender()) {
if (value == address(0)) revert Errors.UnacceptableReference();
beneficiary = value;
emit BeneficiaryUpdated(value);
}
function updateTgeTimestamp(uint256 timestamp) external onlyBeneficiary(_msgSender()) {
if (timestamp < block.timestamp) revert Errors.UnacceptableValue();
if (tgeTimestamp != 0 && block.timestamp >= tgeTimestamp) revert Errors.UnacceptableValue();
if (listingTimestamp != 0 && timestamp > listingTimestamp) revert Errors.UnacceptableValue();
tgeTimestamp = timestamp;
emit TgeTimestampUpdated(timestamp);
}
function updateListingTimestamp(uint256 timestamp) external onlyBeneficiary(_msgSender()) {
if (timestamp < block.timestamp) revert Errors.UnacceptableValue();
if (tgeTimestamp == 0 || timestamp < tgeTimestamp) revert Errors.UnacceptableValue();
if (listingTimestamp != 0 && block.timestamp >= listingTimestamp) revert Errors.UnacceptableValue();
listingTimestamp = timestamp;
emit ListingTimestampUpdated(timestamp);
}
function depositTokenA(uint256 amountA) external {
uint256 deposited = ERC20Helper.transferFrom(tokenA, _msgSender(), address(this), amountA);
if (deposited != amountA) revert TokenWithTransferFees(address(tokenA));
unchecked {
liquidityA += deposited;
}
emit DepositedA(deposited);
}
function withdrawTokenA(uint256 amount) external onlyBeneficiary(_msgSender()) {
if (amount > liquidityA) revert Errors.UnacceptableValue();
unchecked {
liquidityA -= amount;
}
ERC20Helper.transfer(tokenA, beneficiary, amount);
emit WithdrawnA(amount);
}
function withdrawTokenB() external {
if (listingTimestamp == 0 && claimbackPeriod != 0) revert Errors.Forbidden();
uint256 withdrawable = nonClaimableBackTokenB;
if (block.timestamp > listingTimestamp + claimbackPeriod) {
withdrawable = liquidityB;
}
if (withdrawable == 0) revert Errors.Forbidden();
nonClaimableBackTokenB = 0;
unchecked {
liquidityB -= withdrawable;
}
uint256 fee;
Presale.Fees memory fees_ = fees;
if (fees_.tokenBNumerator != 0 && fees_.tokenBDenominator != 0) {
unchecked {
fee = (withdrawable * fees_.tokenBNumerator) / fees_.tokenBDenominator;
}
if (fee > 0) {
unchecked {
withdrawable -= fee;
}
ERC20Helper.transfer(tokenB, getFeeCollector(), fee);
}
}
ERC20Helper.transfer(tokenB, beneficiary, withdrawable);
emit WithdrawnB(withdrawable + fee);
}
function addRound(Round memory round) external onlyManager(_msgSender()) {
_addRound(round);
}
function updateRound(uint256 roundId, Round memory round) external onlyManager(_msgSender()) {
if (round.startTimestamp >= round.endTimestamp) revert Errors.UnacceptableValue();
if (block.timestamp >= rounds[roundId].startTimestamp - ROUND_LOCK_PERIOD) {
revert RoundIsLocked(roundId);
}
if (round.whitelistRoot != bytes32(0) && round.attributes.length != 0) {
revert Errors.UnacceptableValue();
}
rounds[roundId] = round;
emit RoundUpdated(roundId);
}
function removeRound(uint256 roundId) external onlyManager(_msgSender()) {
if (!roundsIds.contains(roundId)) revert RoundNotExists(roundId);
if (block.timestamp >= rounds[roundId].startTimestamp - ROUND_LOCK_PERIOD) {
revert RoundIsLocked(roundId);
}
roundsIds.remove(roundId);
emit RoundUpdated(roundId);
}
function updateRoundWhitelist(uint256 roundId, bytes32 whitelistRoot, string memory proofsUri)
external
onlyManager(_msgSender())
{
if (!roundsIds.contains(roundId)) revert RoundNotExists(roundId);
rounds[roundId].proofsUri = proofsUri;
rounds[roundId].whitelistRoot = whitelistRoot;
emit RoundUpdated(roundId);
}
function getFees() external view returns (Presale.Fees memory) {
return fees;
}
function getRounds()
external
view
returns (uint256[] memory ids, Round[] memory rounds_, RoundState[] memory states)
{
ids = roundsIds.values();
uint256 size = ids.length;
rounds_ = new Round[](size);
states = new RoundState[](size);
for (uint256 i = 0; i < size; i++) {
rounds_[i] = rounds[ids[i]];
states[i] = getRoundState(ids[i]);
}
return (ids, rounds_, states);
}
function withdrawToken(address to, IERC20 token, uint256 amount) public override protectedWithdrawal {
if (address(token) == address(tokenA) || address(token) == address(tokenB)) {
revert Errors.UnacceptableReference();
}
super.withdrawToken(to, token, amount);
}
function getRound(uint256 roundId) public view returns (Round memory) {
if (!roundsIds.contains(roundId)) revert RoundNotExists(roundId);
return rounds[roundId];
}
function getRoundState(uint256 roundId) public view returns (RoundState) {
if (!roundsIds.contains(roundId)) revert RoundNotExists(roundId);
uint256 timestamp = block.timestamp;
if (timestamp < rounds[roundId].startTimestamp) return RoundState.PENDING;
if (timestamp >= rounds[roundId].endTimestamp || liquidityA == 0) {
return RoundState.VESTING;
}
return RoundState.SALE;
}
function getTgeTimestamp() public view returns (uint256) {
return tgeTimestamp;
}
function getListingTimestamp() public view returns (uint256) {
return listingTimestamp;
}
function getFeeCollector() public view returns (address) {
return feeCollectorProvider.getFeeCollector();
}
function _addRound(Round memory round) internal {
if (bytes(round.name).length == 0) revert Errors.UnacceptableValue();
if (round.startTimestamp == 0 || round.endTimestamp == 0) revert Errors.UnacceptableValue();
if (round.startTimestamp >= round.endTimestamp) revert Errors.UnacceptableValue();
if (round.whitelistRoot != bytes32(0) && round.attributes.length != 0) {
revert Errors.UnacceptableValue();
}
unchecked {
++roundSerialId;
}
roundsIds.add(roundSerialId);
rounds[roundSerialId] = round;
emit RoundUpdated(roundSerialId);
}
function _buy(uint256 roundId, uint256 amountA, IVestMembership.Attributes memory attributes)
internal
returns (uint256)
{
if (amountA == 0) revert Errors.UnacceptableValue();
if (amountA > attributes.allocation) revert Errors.UnacceptableValue();
uint256 boughtA = _pay(0, attributes.allocation, attributes.price, amountA);
return membership.mint(_msgSender(), roundId, 0, boughtA, attributes);
}
function _pay(uint256 bought, uint256 allocation, uint256 price, uint256 amountA) internal returns (uint256) {
uint256 available = MathHelper.min(liquidityA, allocation - bought);
uint256 buyingA = MathHelper.min(amountA, available);
if (buyingA == 0) revert OutOfLiquidityA();
uint256 tokenADecimals = ERC20Helper.decimals(tokenA);
uint256 amountBPaidSoFar = bought * price / 10 ** tokenADecimals;
uint256 amountBSumAfterThisTransaction = (bought + buyingA) * price / 10 ** tokenADecimals;
uint256 amountB = amountBSumAfterThisTransaction - amountBPaidSoFar;
if (amountB > 0) {
uint256 receivedB;
if (msg.value > 0) receivedB = ERC20Helper.deposit(tokenB, _msgSender(), address(this), amountB, msg.value);
if (msg.value == 0) receivedB = ERC20Helper.transferFrom(tokenB, _msgSender(), address(this), amountB);
if (receivedB != amountB) revert Errors.Forbidden();
unchecked {
liquidityB += amountB;
}
}
unchecked {
liquidityA -= buyingA;
}
return buyingA;
}
function _requireCallerCanParticipateInSale(uint256 roundId, IVestMembership.Attributes memory attributes)
internal
{
bytes32 key = keccak256(
abi.encode(
_msgSender(),
attributes.price,
attributes.allocation,
attributes.claimbackPeriod,
attributes.tgeNumerator,
attributes.tgeDenominator,
attributes.cliffDuration,
attributes.cliffNumerator,
attributes.cliffDenominator,
attributes.vestingPeriodCount,
attributes.vestingPeriodDuration,
attributes.tradeable
)
);
if (roundParticipants[roundId][key]) revert AlreadyRoundParticipant(roundId, _msgSender());
roundParticipants[roundId][key] = true;
}
function _requireCallerIsWhitelisted(
uint256 roundId,
IVestMembership.Attributes memory attributes,
bytes32[] calldata proof
) internal view {
bytes32 key = keccak256(
abi.encode(
_msgSender(),
attributes.price,
attributes.allocation,
attributes.claimbackPeriod,
attributes.tgeNumerator,
attributes.tgeDenominator,
attributes.cliffDuration,
attributes.cliffNumerator,
attributes.cliffDenominator,
attributes.vestingPeriodCount,
attributes.vestingPeriodDuration,
attributes.tradeable
)
);
if (!MerkleProof.verify(proof, rounds[roundId].whitelistRoot, key)) revert Errors.AccountMismatch(_msgSender());
}
function _requireValidAttributes(IVestMembership.Attributes memory attributes) internal pure {
if (attributes.tgeDenominator == 0 || attributes.cliffDenominator == 0) revert Errors.DenominatorZero();
if (attributes.cliffNumerator > 0 && attributes.cliffDuration == 0) revert CliffWithImmediateUnlock();
if (attributes.vestingPeriodCount > 0 && attributes.vestingPeriodDuration == 0) {
revert VestingWithImmediateUnlock();
}
if (attributes.vestingPeriodCount == 1) revert CliffLikeVesting();
if (attributes.tgeNumerator == 0 && attributes.cliffDuration == 0 && attributes.vestingPeriodCount == 0) {
revert VestingWithoutUnlocks();
}
if (attributes.vestingPeriodCount == 0 && attributes.cliffNumerator > 0) {
revert CliffHeightWithoutSubsequentUnlocks();
}
if (
attributes.cliffDuration == 0 && attributes.vestingPeriodCount == 0
&& attributes.tgeNumerator != attributes.tgeDenominator
) revert VestingSize();
if (attributes.tgeNumerator > attributes.tgeDenominator) revert VestingSize();
if (attributes.cliffNumerator > attributes.cliffDenominator) revert VestingSize();
if (attributes.tgeNumerator > 0 && attributes.cliffNumerator > 0) {
uint256 commonDenominator = attributes.tgeDenominator * attributes.cliffDenominator;
uint256 totalUnlocks = attributes.tgeNumerator * attributes.cliffDenominator
+ attributes.cliffNumerator * attributes.tgeDenominator;
if (totalUnlocks > commonDenominator) revert VestingSize();
}
}
}
文件 29 的 29:Withdrawable.sol
pragma solidity 0.8.23;
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
abstract contract Withdrawable {
using SafeERC20 for IERC20;
error WithdrawToZeroAddress();
modifier protectedWithdrawal() virtual;
receive() external payable virtual { }
function withdrawToken(address to, IERC20 token_, uint256 amount) public virtual protectedWithdrawal {
if (to == address(0)) revert WithdrawToZeroAddress();
token_.safeTransfer(to, amount);
}
function withdrawCoin(address payable to) public virtual protectedWithdrawal {
if (to == address(0)) revert WithdrawToZeroAddress();
to.transfer(address(this).balance);
}
}
{
"compilationTarget": {
"src/VestPresale.sol": "VestPresale"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": [
":@openzeppelin/=node_modules/@openzeppelin/",
":delegatecall/=lib/delegatecall/contracts/",
":ds-test/=lib/forge-std/lib/ds-test/src/",
":forge-std/=lib/forge-std/src/",
":murky/=lib/murky/src/",
":openzeppelin-contracts/=lib/murky/lib/openzeppelin-contracts/",
":solady/=lib/solady/src/",
":solidity-stringutils/=lib/solidity-stringutils/src/"
]
}
[{"inputs":[{"internalType":"contract IVestMembership","name":"membership_","type":"address"},{"internalType":"contract IVestFeeCollectorProvider","name":"feeCollectorProvider_","type":"address"},{"components":[{"components":[{"internalType":"uint16","name":"tokenANumerator","type":"uint16"},{"internalType":"uint16","name":"tokenADenominator","type":"uint16"},{"internalType":"uint16","name":"tokenBNumerator","type":"uint16"},{"internalType":"uint16","name":"tokenBDenominator","type":"uint16"}],"internalType":"struct Presale.Fees","name":"fees","type":"tuple"},{"internalType":"contract IERC20","name":"tokenA","type":"address"},{"internalType":"contract IERC20","name":"tokenB","type":"address"},{"internalType":"address","name":"manager","type":"address"},{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"tgeTimestamp","type":"uint256"},{"internalType":"uint256","name":"listingTimestamp","type":"uint256"},{"internalType":"uint256","name":"claimbackPeriod","type":"uint256"}],"internalType":"struct Presale.Configuration","name":"configuration","type":"tuple"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"},{"internalType":"bytes","name":"attributes","type":"bytes"}],"internalType":"struct Round[]","name":"rounds_","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountMismatch","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"AlreadyRoundParticipant","type":"error"},{"inputs":[{"internalType":"uint256","name":"membershipId","type":"uint256"}],"name":"ClaimNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"membershipId","type":"uint256"}],"name":"ClaimbackNotAllowed","type":"error"},{"inputs":[],"name":"CliffHeightWithoutSubsequentUnlocks","type":"error"},{"inputs":[],"name":"CliffLikeVesting","type":"error"},{"inputs":[],"name":"CliffWithImmediateUnlock","type":"error"},{"inputs":[],"name":"DenominatorZero","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"Forbidden","type":"error"},{"inputs":[],"name":"OutOfLiquidityA","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"RoundIsLocked","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"RoundNotExists","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"enum RoundState","name":"current","type":"uint8"},{"internalType":"enum RoundState","name":"expected","type":"uint8"}],"name":"RoundStateMismatch","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenWithTransferFees","type":"error"},{"inputs":[],"name":"UnacceptableReference","type":"error"},{"inputs":[],"name":"UnacceptableValue","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"VestingSize","type":"error"},{"inputs":[],"name":"VestingWithImmediateUnlock","type":"error"},{"inputs":[],"name":"VestingWithoutUnlocks","type":"error"},{"inputs":[],"name":"WithdrawToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"current","type":"address"}],"name":"BeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"vMembershipId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"vMembershipId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"ClaimedBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositedA","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ListingTimestampUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"current","type":"address"}],"name":"ManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"RoundUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TgeTimestampUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawnA","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawnB","type":"event"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"},{"internalType":"bytes","name":"attributes","type":"bytes"}],"internalType":"struct Round","name":"round","type":"tuple"}],"name":"addRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"internalType":"uint256","name":"amountA","type":"uint256"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"uint256","name":"claimbackPeriod","type":"uint256"},{"internalType":"uint32","name":"tgeNumerator","type":"uint32"},{"internalType":"uint32","name":"tgeDenominator","type":"uint32"},{"internalType":"uint32","name":"cliffDuration","type":"uint32"},{"internalType":"uint32","name":"cliffNumerator","type":"uint32"},{"internalType":"uint32","name":"cliffDenominator","type":"uint32"},{"internalType":"uint32","name":"vestingPeriodCount","type":"uint32"},{"internalType":"uint32","name":"vestingPeriodDuration","type":"uint32"},{"internalType":"uint8","name":"tradeable","type":"uint8"}],"internalType":"struct IVestMembership.Attributes","name":"attributes","type":"tuple"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"buy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"membershipId","type":"uint256"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"membershipId","type":"uint256"},{"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"claimback","outputs":[{"internalType":"uint256","name":"newPublicId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimbackPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"depositTokenA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"membershipId","type":"uint256"},{"internalType":"uint256","name":"amountA","type":"uint256"}],"name":"extend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feeCollectorProvider","outputs":[{"internalType":"contract IVestFeeCollectorProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"components":[{"internalType":"uint16","name":"tokenANumerator","type":"uint16"},{"internalType":"uint16","name":"tokenADenominator","type":"uint16"},{"internalType":"uint16","name":"tokenBNumerator","type":"uint16"},{"internalType":"uint16","name":"tokenBDenominator","type":"uint16"}],"internalType":"struct Presale.Fees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getListingTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"}],"name":"getRound","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"},{"internalType":"bytes","name":"attributes","type":"bytes"}],"internalType":"struct Round","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"}],"name":"getRoundState","outputs":[{"internalType":"enum RoundState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRounds","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"},{"internalType":"bytes","name":"attributes","type":"bytes"}],"internalType":"struct Round[]","name":"rounds_","type":"tuple[]"},{"internalType":"enum RoundState[]","name":"states","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTgeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"membership","outputs":[{"internalType":"contract IVestMembership","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonClaimableBackTokenB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"}],"name":"removeRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"roundParticipants","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenA","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenB","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"updateBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateListingTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"updateManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"},{"internalType":"bytes","name":"attributes","type":"bytes"}],"internalType":"struct Round","name":"round","type":"tuple"}],"name":"updateRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"string","name":"proofsUri","type":"string"}],"name":"updateRoundWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateTgeTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokenA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokenB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]