Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Terminals Of | 19657197 | 359 days ago | IN | 0 ETH | 0.00064644 | ||||
Set Terminals Of | 17580149 | 650 days ago | IN | 0 ETH | 0.00156415 | ||||
Set Terminals Of | 17083864 | 720 days ago | IN | 0 ETH | 0.00716965 | ||||
Set Terminals Of | 16873773 | 750 days ago | IN | 0 ETH | 0.00076818 | ||||
Transfer Ownersh... | 15575468 | 931 days ago | IN | 0 ETH | 0.00044185 | ||||
Set Is Allowed T... | 15575467 | 931 days ago | IN | 0 ETH | 0.00076037 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
JBDirectory
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import './abstract/JBOperatable.sol'; import './interfaces/IJBDirectory.sol'; import './libraries/JBFundingCycleMetadataResolver.sol'; import './libraries/JBOperations.sol'; /** @notice Keeps a reference of which terminal contracts each project is currently accepting funds through, and which controller contract is managing each project's tokens and funding cycles. @dev Adheres to - IJBDirectory: General interface for the methods in this contract that interact with the blockchain's state according to the protocol's rules. @dev Inherits from - JBOperatable: Includes convenience functionality for checking a message sender's permissions before executing certain transactions. Ownable: Includes convenience functionality for checking a message sender's permissions before executing certain transactions. */ contract JBDirectory is JBOperatable, Ownable, IJBDirectory { // A library that parses the packed funding cycle metadata into a friendlier format. using JBFundingCycleMetadataResolver for JBFundingCycle; //*********************************************************************// // --------------------------- custom errors ------------------------- // //*********************************************************************// error DUPLICATE_TERMINALS(); error INVALID_PROJECT_ID_IN_DIRECTORY(); error SET_CONTROLLER_NOT_ALLOWED(); error SET_TERMINALS_NOT_ALLOWED(); error TOKEN_NOT_ACCEPTED(); //*********************************************************************// // --------------------- private stored properties ------------------- // //*********************************************************************// /** @notice For each project ID, the terminals that are currently managing its funds. _projectId The ID of the project to get terminals of. */ mapping(uint256 => IJBPaymentTerminal[]) private _terminalsOf; /** @notice The project's primary terminal for a token. _projectId The ID of the project to get the primary terminal of. _token The token to get the project's primary terminal of. */ mapping(uint256 => mapping(address => IJBPaymentTerminal)) private _primaryTerminalOf; //*********************************************************************// // ---------------- public immutable stored properties --------------- // //*********************************************************************// /** @notice Mints ERC-721's that represent project ownership and transfers. */ IJBProjects public immutable override projects; /** @notice The contract storing all funding cycle configurations. */ IJBFundingCycleStore public immutable override fundingCycleStore; //*********************************************************************// // --------------------- public stored properties -------------------- // //*********************************************************************// /** @notice For each project ID, the controller that manages how terminals interact with tokens and funding cycles. _projectId The ID of the project to get the controller of. */ mapping(uint256 => address) public override controllerOf; /** @notice Addresses that can set a project's first controller on their behalf. These addresses/contracts have been vetted and verified by this contract's owner. _address The address that is either allowed or not. */ mapping(address => bool) public override isAllowedToSetFirstController; //*********************************************************************// // ------------------------- external views -------------------------- // //*********************************************************************// /** @notice For each project ID, the terminals that are currently managing its funds. @param _projectId The ID of the project to get terminals of. @return An array of terminal addresses. */ function terminalsOf(uint256 _projectId) external view override returns (IJBPaymentTerminal[] memory) { return _terminalsOf[_projectId]; } /** @notice The primary terminal that is managing funds for a project for a specified token. @dev The zero address is returned if a terminal isn't found for the specified token. @param _projectId The ID of the project to get a terminal for. @param _token The token the terminal accepts. @return The primary terminal for the project for the specified token. */ function primaryTerminalOf(uint256 _projectId, address _token) external view override returns (IJBPaymentTerminal) { // Keep a reference to the primary terminal for the provided project ID and token. IJBPaymentTerminal _primaryTerminal = _primaryTerminalOf[_projectId][_token]; // If a primary terminal for the token was specifically set and it's one of the project's terminals, return it. if ( _primaryTerminal != IJBPaymentTerminal(address(0)) && isTerminalOf(_projectId, _primaryTerminal) ) return _primaryTerminal; // Keep a reference to the number of terminals the project has. uint256 _numberOfTerminals = _terminalsOf[_projectId].length; // Return the first terminal which accepts the specified token. for (uint256 _i; _i < _numberOfTerminals; ) { // Keep a reference to the terminal being iterated on. IJBPaymentTerminal _terminal = _terminalsOf[_projectId][_i]; // If the terminal accepts the specified token, return it. if (_terminal.acceptsToken(_token, _projectId)) return _terminal; unchecked { ++_i; } } // Not found. return IJBPaymentTerminal(address(0)); } //*********************************************************************// // -------------------------- public views --------------------------- // //*********************************************************************// /** @notice Whether or not a specified terminal is a terminal of the specified project. @param _projectId The ID of the project to check within. @param _terminal The address of the terminal to check for. @return A flag indicating whether or not the specified terminal is a terminal of the specified project. */ function isTerminalOf(uint256 _projectId, IJBPaymentTerminal _terminal) public view override returns (bool) { // Keep a reference to the number of terminals the project has. uint256 _numberOfTerminals = _terminalsOf[_projectId].length; // Loop through and return true if the terminal is contained. for (uint256 _i; _i < _numberOfTerminals; ) { // If the terminal being iterated on matches the provided terminal, return true. if (_terminalsOf[_projectId][_i] == _terminal) return true; unchecked { ++_i; } } // Otherwise, return false. return false; } //*********************************************************************// // -------------------------- constructor ---------------------------- // //*********************************************************************// /** @param _operatorStore A contract storing operator assignments. @param _projects A contract which mints ERC-721's that represent project ownership and transfers. @param _fundingCycleStore A contract storing all funding cycle configurations. @param _owner The address that will own the contract. */ constructor( IJBOperatorStore _operatorStore, IJBProjects _projects, IJBFundingCycleStore _fundingCycleStore, address _owner ) JBOperatable(_operatorStore) { projects = _projects; fundingCycleStore = _fundingCycleStore; _transferOwnership(_owner); } //*********************************************************************// // ---------------------- external transactions ---------------------- // //*********************************************************************// /** @notice Update the controller that manages how terminals interact with the ecosystem. @dev A controller can be set if: - the message sender is the project owner or an operator having the correct authorization. - the message sender is the project's current controller. - or, an allowedlisted address is setting a controller for a project that doesn't already have a controller. @param _projectId The ID of the project to set a new controller for. @param _controller The new controller to set. */ function setControllerOf(uint256 _projectId, address _controller) external override requirePermissionAllowingOverride( projects.ownerOf(_projectId), _projectId, JBOperations.SET_CONTROLLER, (msg.sender == address(controllerOf[_projectId]) || (isAllowedToSetFirstController[msg.sender] && controllerOf[_projectId] == address(0))) ) { // The project must exist. if (projects.count() < _projectId) revert INVALID_PROJECT_ID_IN_DIRECTORY(); // Get a reference to the project's current funding cycle. JBFundingCycle memory _fundingCycle = fundingCycleStore.currentOf(_projectId); // Setting controller is allowed if called from the current controller, or if the project doesn't have a current controller, or if the project's funding cycle allows setting the controller. Revert otherwise. if ( msg.sender != address(controllerOf[_projectId]) && controllerOf[_projectId] != address(0) && !_fundingCycle.global().allowSetController ) revert SET_CONTROLLER_NOT_ALLOWED(); // Set the new controller. controllerOf[_projectId] = _controller; emit SetController(_projectId, _controller, msg.sender); } /** @notice Set a project's terminals. @dev Only a project owner, an operator, or its controller can set its terminals. @param _projectId The ID of the project having terminals set. @param _terminals The terminal to set. */ function setTerminalsOf(uint256 _projectId, IJBPaymentTerminal[] calldata _terminals) external override requirePermissionAllowingOverride( projects.ownerOf(_projectId), _projectId, JBOperations.SET_TERMINALS, msg.sender == address(controllerOf[_projectId]) ) { // Get a reference to the project's current funding cycle. JBFundingCycle memory _fundingCycle = fundingCycleStore.currentOf(_projectId); // Setting terminals must be allowed if not called from the current controller. if ( msg.sender != address(controllerOf[_projectId]) && !_fundingCycle.global().allowSetTerminals ) revert SET_TERMINALS_NOT_ALLOWED(); // Set the stored terminals for the project. _terminalsOf[_projectId] = _terminals; // Make sure duplicates were not added. if (_terminals.length > 1) { for (uint256 _i; _i < _terminals.length; ) { for (uint256 _j = _i + 1; _j < _terminals.length; ) { if (_terminals[_i] == _terminals[_j]) revert DUPLICATE_TERMINALS(); unchecked { ++_j; } } unchecked { ++_i; } } } emit SetTerminals(_projectId, _terminals, msg.sender); } /** @notice Project's can set which terminal should be their primary for a particular token. This is useful in case a project has several terminals connected for a particular token. @dev The terminal will be set as the primary terminal where ecosystem contracts should route tokens. @dev If setting a newly added terminal and the funding cycle doesn't allow new terminals, the caller must be the current controller. @param _projectId The ID of the project for which a primary token is being set. @param _token The token to set the primary terminal of. @param _terminal The terminal to make primary. */ function setPrimaryTerminalOf( uint256 _projectId, address _token, IJBPaymentTerminal _terminal ) external override requirePermission(projects.ownerOf(_projectId), _projectId, JBOperations.SET_PRIMARY_TERMINAL) { // Can't set the primary terminal for a token if it doesn't accept the token. if (!_terminal.acceptsToken(_token, _projectId)) revert TOKEN_NOT_ACCEPTED(); // Add the terminal to the project if it hasn't been already. _addTerminalIfNeeded(_projectId, _terminal); // Store the terminal as the primary for the particular token. _primaryTerminalOf[_projectId][_token] = _terminal; emit SetPrimaryTerminal(_projectId, _token, _terminal, msg.sender); } /** @notice Set a contract to the list of trusted addresses that can set a first controller for any project. @dev The owner can add addresses which are allowed to change projects' first controllers. These addresses are known and vetted controllers as well as contracts designed to launch new projects. A project can set its own controller without it being on the allow list. @dev If you would like an address/contract allowlisted, please reach out to the contract owner. @param _address The address to allow or revoke allowance from. @param _flag Whether allowance is being added or revoked. */ function setIsAllowedToSetFirstController(address _address, bool _flag) external override onlyOwner { // Set the flag in the allowlist. isAllowedToSetFirstController[_address] = _flag; emit SetIsAllowedToSetFirstController(_address, _flag, msg.sender); } //*********************************************************************// // --------------------- private helper functions -------------------- // //*********************************************************************// /** @notice Add a terminal to a project's list of terminals if it hasn't been already. @param _projectId The ID of the project having a terminal added. @param _terminal The terminal to add. */ function _addTerminalIfNeeded(uint256 _projectId, IJBPaymentTerminal _terminal) private { // Check that the terminal has not already been added. if (isTerminalOf(_projectId, _terminal)) return; // Get a reference to the project's current funding cycle. JBFundingCycle memory _fundingCycle = fundingCycleStore.currentOf(_projectId); // Setting terminals must be allowed if not called from the current controller. if ( msg.sender != address(controllerOf[_projectId]) && !_fundingCycle.global().allowSetTerminals ) revert SET_TERMINALS_NOT_ALLOWED(); // Add the new terminal. _terminalsOf[_projectId].push(_terminal); emit AddTerminal(_projectId, _terminal, msg.sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ 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`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ 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. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @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 must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( 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 the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, 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 or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @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 {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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}. */ 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 function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import './../interfaces/IJBOperatable.sol'; /** @notice Modifiers to allow access to functions based on the message sender's operator status. @dev Adheres to - IJBOperatable: General interface for the methods in this contract that interact with the blockchain's state according to the protocol's rules. */ abstract contract JBOperatable is IJBOperatable { //*********************************************************************// // --------------------------- custom errors -------------------------- // //*********************************************************************// error UNAUTHORIZED(); //*********************************************************************// // ---------------------------- modifiers ---------------------------- // //*********************************************************************// /** @notice Only allows the speficied account or an operator of the account to proceed. @param _account The account to check for. @param _domain The domain namespace to look for an operator within. @param _permissionIndex The index of the permission to check for. */ modifier requirePermission( address _account, uint256 _domain, uint256 _permissionIndex ) { _requirePermission(_account, _domain, _permissionIndex); _; } /** @notice Only allows the speficied account, an operator of the account to proceed, or a truthy override flag. @param _account The account to check for. @param _domain The domain namespace to look for an operator within. @param _permissionIndex The index of the permission to check for. @param _override A condition to force allowance for. */ modifier requirePermissionAllowingOverride( address _account, uint256 _domain, uint256 _permissionIndex, bool _override ) { _requirePermissionAllowingOverride(_account, _domain, _permissionIndex, _override); _; } //*********************************************************************// // ---------------- public immutable stored properties --------------- // //*********************************************************************// /** @notice A contract storing operator assignments. */ IJBOperatorStore public immutable override operatorStore; //*********************************************************************// // -------------------------- constructor ---------------------------- // //*********************************************************************// /** @param _operatorStore A contract storing operator assignments. */ constructor(IJBOperatorStore _operatorStore) { operatorStore = _operatorStore; } //*********************************************************************// // -------------------------- internal views ------------------------- // //*********************************************************************// /** @notice Require the message sender is either the account or has the specified permission. @param _account The account to allow. @param _domain The domain namespace within which the permission index will be checked. @param _permissionIndex The permission index that an operator must have within the specified domain to be allowed. */ function _requirePermission( address _account, uint256 _domain, uint256 _permissionIndex ) internal view { if ( msg.sender != _account && !operatorStore.hasPermission(msg.sender, _account, _domain, _permissionIndex) && !operatorStore.hasPermission(msg.sender, _account, 0, _permissionIndex) ) revert UNAUTHORIZED(); } /** @notice Require the message sender is either the account, has the specified permission, or the override condition is true. @param _account The account to allow. @param _domain The domain namespace within which the permission index will be checked. @param _domain The permission index that an operator must have within the specified domain to be allowed. @param _override The override condition to allow. */ function _requirePermissionAllowingOverride( address _account, uint256 _domain, uint256 _permissionIndex, bool _override ) internal view { if ( !_override && msg.sender != _account && !operatorStore.hasPermission(msg.sender, _account, _domain, _permissionIndex) && !operatorStore.hasPermission(msg.sender, _account, 0, _permissionIndex) ) revert UNAUTHORIZED(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; enum JBBallotState { Active, Approved, Failed }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './IJBFundingCycleStore.sol'; import './IJBPaymentTerminal.sol'; import './IJBProjects.sol'; interface IJBDirectory { event SetController(uint256 indexed projectId, address indexed controller, address caller); event AddTerminal(uint256 indexed projectId, IJBPaymentTerminal indexed terminal, address caller); event SetTerminals(uint256 indexed projectId, IJBPaymentTerminal[] terminals, address caller); event SetPrimaryTerminal( uint256 indexed projectId, address indexed token, IJBPaymentTerminal indexed terminal, address caller ); event SetIsAllowedToSetFirstController(address indexed addr, bool indexed flag, address caller); function projects() external view returns (IJBProjects); function fundingCycleStore() external view returns (IJBFundingCycleStore); function controllerOf(uint256 _projectId) external view returns (address); function isAllowedToSetFirstController(address _address) external view returns (bool); function terminalsOf(uint256 _projectId) external view returns (IJBPaymentTerminal[] memory); function isTerminalOf(uint256 _projectId, IJBPaymentTerminal _terminal) external view returns (bool); function primaryTerminalOf(uint256 _projectId, address _token) external view returns (IJBPaymentTerminal); function setControllerOf(uint256 _projectId, address _controller) external; function setTerminalsOf(uint256 _projectId, IJBPaymentTerminal[] calldata _terminals) external; function setPrimaryTerminalOf( uint256 _projectId, address _token, IJBPaymentTerminal _terminal ) external; function setIsAllowedToSetFirstController(address _address, bool _flag) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; import './../enums/JBBallotState.sol'; interface IJBFundingCycleBallot is IERC165 { function duration() external view returns (uint256); function stateOf( uint256 _projectId, uint256 _configuration, uint256 _start ) external view returns (JBBallotState); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './../enums/JBBallotState.sol'; import './../structs/JBFundingCycle.sol'; import './../structs/JBFundingCycleData.sol'; interface IJBFundingCycleStore { event Configure( uint256 indexed configuration, uint256 indexed projectId, JBFundingCycleData data, uint256 metadata, uint256 mustStartAtOrAfter, address caller ); event Init(uint256 indexed configuration, uint256 indexed projectId, uint256 indexed basedOn); function latestConfigurationOf(uint256 _projectId) external view returns (uint256); function get(uint256 _projectId, uint256 _configuration) external view returns (JBFundingCycle memory); function latestConfiguredOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle, JBBallotState ballotState); function queuedOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle); function currentOf(uint256 _projectId) external view returns (JBFundingCycle memory fundingCycle); function currentBallotStateOf(uint256 _projectId) external view returns (JBBallotState); function configureFor( uint256 _projectId, JBFundingCycleData calldata _data, uint256 _metadata, uint256 _mustStartAtOrAfter ) external returns (JBFundingCycle memory fundingCycle); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './IJBOperatorStore.sol'; interface IJBOperatable { function operatorStore() external view returns (IJBOperatorStore); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './../structs/JBOperatorData.sol'; interface IJBOperatorStore { event SetOperator( address indexed operator, address indexed account, uint256 indexed domain, uint256[] permissionIndexes, uint256 packed ); function permissionsOf( address _operator, address _account, uint256 _domain ) external view returns (uint256); function hasPermission( address _operator, address _account, uint256 _domain, uint256 _permissionIndex ) external view returns (bool); function hasPermissions( address _operator, address _account, uint256 _domain, uint256[] calldata _permissionIndexes ) external view returns (bool); function setOperator(JBOperatorData calldata _operatorData) external; function setOperators(JBOperatorData[] calldata _operatorData) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; interface IJBPaymentTerminal is IERC165 { function acceptsToken(address _token, uint256 _projectId) external view returns (bool); function currencyForToken(address _token) external view returns (uint256); function decimalsForToken(address _token) external view returns (uint256); // Return value must be a fixed point number with 18 decimals. function currentEthOverflowOf(uint256 _projectId) external view returns (uint256); function pay( uint256 _projectId, uint256 _amount, address _token, address _beneficiary, uint256 _minReturnedTokens, bool _preferClaimedTokens, string calldata _memo, bytes calldata _metadata ) external payable returns (uint256 beneficiaryTokenCount); function addToBalanceOf( uint256 _projectId, uint256 _amount, address _token, string calldata _memo, bytes calldata _metadata ) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import './../structs/JBProjectMetadata.sol'; import './IJBTokenUriResolver.sol'; interface IJBProjects is IERC721 { event Create( uint256 indexed projectId, address indexed owner, JBProjectMetadata metadata, address caller ); event SetMetadata(uint256 indexed projectId, JBProjectMetadata metadata, address caller); event SetTokenUriResolver(IJBTokenUriResolver indexed resolver, address caller); function count() external view returns (uint256); function metadataContentOf(uint256 _projectId, uint256 _domain) external view returns (string memory); function tokenUriResolver() external view returns (IJBTokenUriResolver); function createFor(address _owner, JBProjectMetadata calldata _metadata) external returns (uint256 projectId); function setMetadataOf(uint256 _projectId, JBProjectMetadata calldata _metadata) external; function setTokenUriResolver(IJBTokenUriResolver _newResolver) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IJBTokenUriResolver { function getUri(uint256 _projectId) external view returns (string memory tokenUri); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** @notice Global constants used across Juicebox contracts. */ library JBConstants { uint256 public constant MAX_RESERVED_RATE = 10_000; uint256 public constant MAX_REDEMPTION_RATE = 10_000; uint256 public constant MAX_DISCOUNT_RATE = 1_000_000_000; uint256 public constant SPLITS_TOTAL_PERCENT = 1_000_000_000; uint256 public constant MAX_FEE = 1_000_000_000; uint256 public constant MAX_FEE_DISCOUNT = 1_000_000_000; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import './../structs/JBFundingCycle.sol'; import './../structs/JBFundingCycleMetadata.sol'; import './../structs/JBGlobalFundingCycleMetadata.sol'; import './JBConstants.sol'; import './JBGlobalFundingCycleMetadataResolver.sol'; library JBFundingCycleMetadataResolver { function global(JBFundingCycle memory _fundingCycle) internal pure returns (JBGlobalFundingCycleMetadata memory) { return JBGlobalFundingCycleMetadataResolver.expandMetadata(uint8(_fundingCycle.metadata >> 8)); } function reservedRate(JBFundingCycle memory _fundingCycle) internal pure returns (uint256) { return uint256(uint16(_fundingCycle.metadata >> 24)); } function redemptionRate(JBFundingCycle memory _fundingCycle) internal pure returns (uint256) { // Redemption rate is a number 0-10000. It's inverse was stored so the most common case of 100% results in no storage needs. return JBConstants.MAX_REDEMPTION_RATE - uint256(uint16(_fundingCycle.metadata >> 40)); } function ballotRedemptionRate(JBFundingCycle memory _fundingCycle) internal pure returns (uint256) { // Redemption rate is a number 0-10000. It's inverse was stored so the most common case of 100% results in no storage needs. return JBConstants.MAX_REDEMPTION_RATE - uint256(uint16(_fundingCycle.metadata >> 56)); } function payPaused(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 72) & 1) == 1; } function distributionsPaused(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 73) & 1) == 1; } function redeemPaused(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 74) & 1) == 1; } function burnPaused(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 75) & 1) == 1; } function mintingAllowed(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 76) & 1) == 1; } function terminalMigrationAllowed(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 77) & 1) == 1; } function controllerMigrationAllowed(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 78) & 1) == 1; } function shouldHoldFees(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 79) & 1) == 1; } function preferClaimedTokenOverride(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 80) & 1) == 1; } function useTotalOverflowForRedemptions(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return ((_fundingCycle.metadata >> 81) & 1) == 1; } function useDataSourceForPay(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return (_fundingCycle.metadata >> 82) & 1 == 1; } function useDataSourceForRedeem(JBFundingCycle memory _fundingCycle) internal pure returns (bool) { return (_fundingCycle.metadata >> 83) & 1 == 1; } function dataSource(JBFundingCycle memory _fundingCycle) internal pure returns (address) { return address(uint160(_fundingCycle.metadata >> 84)); } function metadata(JBFundingCycle memory _fundingCycle) internal pure returns (uint256) { return uint256(uint8(_fundingCycle.metadata >> 244)); } /** @notice Pack the funding cycle metadata. @param _metadata The metadata to validate and pack. @return packed The packed uint256 of all metadata params. The first 8 bits specify the version. */ function packFundingCycleMetadata(JBFundingCycleMetadata memory _metadata) internal pure returns (uint256 packed) { // version 1 in the bits 0-7 (8 bits). packed = 1; // global metadta in bits 8-23 (16 bits). packed |= JBGlobalFundingCycleMetadataResolver.packFundingCycleGlobalMetadata(_metadata.global) << 8; // reserved rate in bits 24-39 (16 bits). packed |= _metadata.reservedRate << 24; // redemption rate in bits 40-55 (16 bits). // redemption rate is a number 0-10000. Store the reverse so the most common case of 100% results in no storage needs. packed |= (JBConstants.MAX_REDEMPTION_RATE - _metadata.redemptionRate) << 40; // ballot redemption rate rate in bits 56-71 (16 bits). // ballot redemption rate is a number 0-10000. Store the reverse so the most common case of 100% results in no storage needs. packed |= (JBConstants.MAX_REDEMPTION_RATE - _metadata.ballotRedemptionRate) << 56; // pause pay in bit 72. if (_metadata.pausePay) packed |= 1 << 72; // pause tap in bit 73. if (_metadata.pauseDistributions) packed |= 1 << 73; // pause redeem in bit 74. if (_metadata.pauseRedeem) packed |= 1 << 74; // pause burn in bit 75. if (_metadata.pauseBurn) packed |= 1 << 75; // allow minting in bit 76. if (_metadata.allowMinting) packed |= 1 << 76; // allow terminal migration in bit 77. if (_metadata.allowTerminalMigration) packed |= 1 << 77; // allow controller migration in bit 78. if (_metadata.allowControllerMigration) packed |= 1 << 78; // hold fees in bit 79. if (_metadata.holdFees) packed |= 1 << 79; // prefer claimed token override in bit 80. if (_metadata.preferClaimedTokenOverride) packed |= 1 << 80; // useTotalOverflowForRedemptions in bit 81. if (_metadata.useTotalOverflowForRedemptions) packed |= 1 << 81; // use pay data source in bit 82. if (_metadata.useDataSourceForPay) packed |= 1 << 82; // use redeem data source in bit 83. if (_metadata.useDataSourceForRedeem) packed |= 1 << 83; // data source address in bits 84-243. packed |= uint256(uint160(address(_metadata.dataSource))) << 84; // metadata in bits 244-252 (8 bits). packed |= _metadata.metadata << 244; } /** @notice Expand the funding cycle metadata. @param _fundingCycle The funding cycle having its metadata expanded. @return metadata The metadata object. */ function expandMetadata(JBFundingCycle memory _fundingCycle) internal pure returns (JBFundingCycleMetadata memory) { return JBFundingCycleMetadata( global(_fundingCycle), reservedRate(_fundingCycle), redemptionRate(_fundingCycle), ballotRedemptionRate(_fundingCycle), payPaused(_fundingCycle), distributionsPaused(_fundingCycle), redeemPaused(_fundingCycle), burnPaused(_fundingCycle), mintingAllowed(_fundingCycle), terminalMigrationAllowed(_fundingCycle), controllerMigrationAllowed(_fundingCycle), shouldHoldFees(_fundingCycle), preferClaimedTokenOverride(_fundingCycle), useTotalOverflowForRedemptions(_fundingCycle), useDataSourceForPay(_fundingCycle), useDataSourceForRedeem(_fundingCycle), dataSource(_fundingCycle), metadata(_fundingCycle) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import './../structs/JBFundingCycleMetadata.sol'; library JBGlobalFundingCycleMetadataResolver { function setTerminalsAllowed(uint8 _data) internal pure returns (bool) { return (_data & 1) == 1; } function setControllerAllowed(uint8 _data) internal pure returns (bool) { return ((_data >> 1) & 1) == 1; } function transfersPaused(uint8 _data) internal pure returns (bool) { return ((_data >> 2) & 1) == 1; } /** @notice Pack the global funding cycle metadata. @param _metadata The metadata to validate and pack. @return packed The packed uint256 of all global metadata params. The first 8 bits specify the version. */ function packFundingCycleGlobalMetadata(JBGlobalFundingCycleMetadata memory _metadata) internal pure returns (uint256 packed) { // allow set terminals in bit 0. if (_metadata.allowSetTerminals) packed |= 1; // allow set controller in bit 1. if (_metadata.allowSetController) packed |= 1 << 1; // pause transfers in bit 2. if (_metadata.pauseTransfers) packed |= 1 << 2; } /** @notice Expand the global funding cycle metadata. @param _packedMetadata The packed metadata to expand. @return metadata The global metadata object. */ function expandMetadata(uint8 _packedMetadata) internal pure returns (JBGlobalFundingCycleMetadata memory metadata) { return JBGlobalFundingCycleMetadata( setTerminalsAllowed(_packedMetadata), setControllerAllowed(_packedMetadata), transfersPaused(_packedMetadata) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library JBOperations { uint256 public constant RECONFIGURE = 1; uint256 public constant REDEEM = 2; uint256 public constant MIGRATE_CONTROLLER = 3; uint256 public constant MIGRATE_TERMINAL = 4; uint256 public constant PROCESS_FEES = 5; uint256 public constant SET_METADATA = 6; uint256 public constant ISSUE = 7; uint256 public constant SET_TOKEN = 8; uint256 public constant MINT = 9; uint256 public constant BURN = 10; uint256 public constant CLAIM = 11; uint256 public constant TRANSFER = 12; uint256 public constant REQUIRE_CLAIM = 13; // unused in v3 uint256 public constant SET_CONTROLLER = 14; uint256 public constant SET_TERMINALS = 15; uint256 public constant SET_PRIMARY_TERMINAL = 16; uint256 public constant USE_ALLOWANCE = 17; uint256 public constant SET_SPLITS = 18; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './../interfaces/IJBFundingCycleBallot.sol'; /** @member number The funding cycle number for the cycle's project. Each funding cycle has a number that is an increment of the cycle that directly preceded it. Each project's first funding cycle has a number of 1. @member configuration The timestamp when the parameters for this funding cycle were configured. This value will stay the same for subsequent funding cycles that roll over from an originally configured cycle. @member basedOn The `configuration` of the funding cycle that was active when this cycle was created. @member start The timestamp marking the moment from which the funding cycle is considered active. It is a unix timestamp measured in seconds. @member duration The number of seconds the funding cycle lasts for, after which a new funding cycle will start. A duration of 0 means that the funding cycle will stay active until the project owner explicitly issues a reconfiguration, at which point a new funding cycle will immediately start with the updated properties. If the duration is greater than 0, a project owner cannot make changes to a funding cycle's parameters while it is active – any proposed changes will apply to the subsequent cycle. If no changes are proposed, a funding cycle rolls over to another one with the same properties but new `start` timestamp and a discounted `weight`. @member weight A fixed point number with 18 decimals that contracts can use to base arbitrary calculations on. For example, payment terminals can use this to determine how many tokens should be minted when a payment is received. @member discountRate A percent by how much the `weight` of the subsequent funding cycle should be reduced, if the project owner hasn't configured the subsequent funding cycle with an explicit `weight`. If it's 0, each funding cycle will have equal weight. If the number is 90%, the next funding cycle will have a 10% smaller weight. This weight is out of `JBConstants.MAX_DISCOUNT_RATE`. @member ballot An address of a contract that says whether a proposed reconfiguration should be accepted or rejected. It can be used to create rules around how a project owner can change funding cycle parameters over time. @member metadata Extra data that can be associated with a funding cycle. */ struct JBFundingCycle { uint256 number; uint256 configuration; uint256 basedOn; uint256 start; uint256 duration; uint256 weight; uint256 discountRate; IJBFundingCycleBallot ballot; uint256 metadata; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './../interfaces/IJBFundingCycleBallot.sol'; /** @member duration The number of seconds the funding cycle lasts for, after which a new funding cycle will start. A duration of 0 means that the funding cycle will stay active until the project owner explicitly issues a reconfiguration, at which point a new funding cycle will immediately start with the updated properties. If the duration is greater than 0, a project owner cannot make changes to a funding cycle's parameters while it is active – any proposed changes will apply to the subsequent cycle. If no changes are proposed, a funding cycle rolls over to another one with the same properties but new `start` timestamp and a discounted `weight`. @member weight A fixed point number with 18 decimals that contracts can use to base arbitrary calculations on. For example, payment terminals can use this to determine how many tokens should be minted when a payment is received. @member discountRate A percent by how much the `weight` of the subsequent funding cycle should be reduced, if the project owner hasn't configured the subsequent funding cycle with an explicit `weight`. If it's 0, each funding cycle will have equal weight. If the number is 90%, the next funding cycle will have a 10% smaller weight. This weight is out of `JBConstants.MAX_DISCOUNT_RATE`. @member ballot An address of a contract that says whether a proposed reconfiguration should be accepted or rejected. It can be used to create rules around how a project owner can change funding cycle parameters over time. */ struct JBFundingCycleData { uint256 duration; uint256 weight; uint256 discountRate; IJBFundingCycleBallot ballot; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './JBGlobalFundingCycleMetadata.sol'; /** @member global Data used globally in non-migratable ecosystem contracts. @member reservedRate The reserved rate of the funding cycle. This number is a percentage calculated out of `JBConstants.MAX_RESERVED_RATE`. @member redemptionRate The redemption rate of the funding cycle. This number is a percentage calculated out of `JBConstants.MAX_REDEMPTION_RATE`. @member ballotRedemptionRate The redemption rate to use during an active ballot of the funding cycle. This number is a percentage calculated out of `JBConstants.MAX_REDEMPTION_RATE`. @member pausePay A flag indicating if the pay functionality should be paused during the funding cycle. @member pauseDistributions A flag indicating if the distribute functionality should be paused during the funding cycle. @member pauseRedeem A flag indicating if the redeem functionality should be paused during the funding cycle. @member pauseBurn A flag indicating if the burn functionality should be paused during the funding cycle. @member allowMinting A flag indicating if minting tokens should be allowed during this funding cycle. @member allowTerminalMigration A flag indicating if migrating terminals should be allowed during this funding cycle. @member allowControllerMigration A flag indicating if migrating controllers should be allowed during this funding cycle. @member holdFees A flag indicating if fees should be held during this funding cycle. @member preferClaimedTokenOverride A flag indicating if claimed tokens should always be prefered to unclaimed tokens when minting. @member useTotalOverflowForRedemptions A flag indicating if redemptions should use the project's balance held in all terminals instead of the project's local terminal balance from which the redemption is being fulfilled. @member useDataSourceForPay A flag indicating if the data source should be used for pay transactions during this funding cycle. @member useDataSourceForRedeem A flag indicating if the data source should be used for redeem transactions during this funding cycle. @member dataSource The data source to use during this funding cycle. @member metadata Metadata of the metadata, up to uint8 in size. */ struct JBFundingCycleMetadata { JBGlobalFundingCycleMetadata global; uint256 reservedRate; uint256 redemptionRate; uint256 ballotRedemptionRate; bool pausePay; bool pauseDistributions; bool pauseRedeem; bool pauseBurn; bool allowMinting; bool allowTerminalMigration; bool allowControllerMigration; bool holdFees; bool preferClaimedTokenOverride; bool useTotalOverflowForRedemptions; bool useDataSourceForPay; bool useDataSourceForRedeem; address dataSource; uint256 metadata; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** @member allowSetTerminals A flag indicating if setting terminals should be allowed during this funding cycle. @member allowSetController A flag indicating if setting a new controller should be allowed during this funding cycle. @member pauseTransfers A flag indicating if the project token transfer functionality should be paused during the funding cycle. */ struct JBGlobalFundingCycleMetadata { bool allowSetTerminals; bool allowSetController; bool pauseTransfers; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** @member operator The address of the operator. @member domain The domain within which the operator is being given permissions. A domain of 0 is a wildcard domain, which gives an operator access to all domains. @member permissionIndexes The indexes of the permissions the operator is being given. */ struct JBOperatorData { address operator; uint256 domain; uint256[] permissionIndexes; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** @member content The metadata content. @member domain The domain within which the metadata applies. */ struct JBProjectMetadata { string content; uint256 domain; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 10000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IJBOperatorStore","name":"_operatorStore","type":"address"},{"internalType":"contract IJBProjects","name":"_projects","type":"address"},{"internalType":"contract IJBFundingCycleStore","name":"_fundingCycleStore","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"DUPLICATE_TERMINALS","type":"error"},{"inputs":[],"name":"INVALID_PROJECT_ID_IN_DIRECTORY","type":"error"},{"inputs":[],"name":"SET_CONTROLLER_NOT_ALLOWED","type":"error"},{"inputs":[],"name":"SET_TERMINALS_NOT_ALLOWED","type":"error"},{"inputs":[],"name":"TOKEN_NOT_ACCEPTED","type":"error"},{"inputs":[],"name":"UNAUTHORIZED","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":true,"internalType":"contract IJBPaymentTerminal","name":"terminal","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"AddTerminal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":true,"internalType":"address","name":"controller","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetController","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"bool","name":"flag","type":"bool"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetIsAllowedToSetFirstController","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"contract IJBPaymentTerminal","name":"terminal","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetPrimaryTerminal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":false,"internalType":"contract IJBPaymentTerminal[]","name":"terminals","type":"address[]"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetTerminals","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"controllerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundingCycleStore","outputs":[{"internalType":"contract IJBFundingCycleStore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAllowedToSetFirstController","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"contract IJBPaymentTerminal","name":"_terminal","type":"address"}],"name":"isTerminalOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorStore","outputs":[{"internalType":"contract IJBOperatorStore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"primaryTerminalOf","outputs":[{"internalType":"contract IJBPaymentTerminal","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projects","outputs":[{"internalType":"contract IJBProjects","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_controller","type":"address"}],"name":"setControllerOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setIsAllowedToSetFirstController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"contract IJBPaymentTerminal","name":"_terminal","type":"address"}],"name":"setPrimaryTerminalOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"contract IJBPaymentTerminal[]","name":"_terminals","type":"address[]"}],"name":"setTerminalsOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"terminalsOf","outputs":[{"internalType":"contract IJBPaymentTerminal[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162001eac38038062001eac8339810160408190526200003491620000dd565b6001600160a01b0384166080526200004c3362000074565b6001600160a01b0380841660a052821660c0526200006a8162000074565b5050505062000145565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114620000da57600080fd5b50565b60008060008060808587031215620000f457600080fd5b84516200010181620000c4565b60208601519094506200011481620000c4565b60408601519093506200012781620000c4565b60608601519092506200013a81620000c4565b939692955090935050565b60805160a05160c051611ceb620001c16000396000818160ff015281816107bf01528181610b2001526113a80152600081816101ff015281816102fe015281816105c6015281816106c80152610a36015260008181610257015281816111ed015281816112ba015281816115bb01526116880152611ceb6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80638620265011610097578063ad007d6311610066578063ad007d6314610252578063c5664e2114610279578063d17541531461029c578063f2fde38b146102bc57600080fd5b806386202650146101e75780638b79543c146101fa5780638da5cb5b14610221578063a1ed31751461023f57600080fd5b80636e49181f116100d35780636e49181f14610196578063714e7f32146101b9578063715018a6146101cc578063821b9fd8146101d457600080fd5b8063557e7155146100fa5780635dd8f6aa1461014b57806363d0850a14610181575b600080fd5b6101217f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6101216101593660046118b8565b60036020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61019461018f3660046118f3565b6102cf565b005b6101a96101a4366004611935565b6104fe565b6040519015158152602001610142565b6101946101c7366004611935565b610597565b610194610975565b6101946101e2366004611965565b610a07565b6101216101f5366004611935565b610d66565b6101217f000000000000000000000000000000000000000000000000000000000000000081565b60005473ffffffffffffffffffffffffffffffffffffffff16610121565b61019461024d3660046119f2565b610ebc565b6101217f000000000000000000000000000000000000000000000000000000000000000081565b6101a9610287366004611a20565b60046020526000908152604090205460ff1681565b6102af6102aa3660046118b8565b610fca565b6040516101429190611a44565b6101946102ca366004611a20565b611043565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018490527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa15801561035a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037e9190611a9e565b83601061038c838383611173565b6040517fdf21a7dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301526024820188905285169063df21a7dd90604401602060405180830381865afa1580156103ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104239190611abb565b610459576040517f1f5522f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104638685611363565b600086815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8981168086529184529382902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001694891694851790559051338152909189917fc670a502bbb9f8a4315f95eca901a9f99b65f89a2eb5705a58050e5c00f9d672910160405180910390a4505050505050565b600082815260016020526040812054815b8181101561058a576000858152600160205260409020805473ffffffffffffffffffffffffffffffffffffffff861691908390811061055057610550611ad8565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361058257600192505050610591565b60010161050f565b5060009150505b92915050565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610622573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106469190611a9e565b6000838152600360205260409020548390600e9073ffffffffffffffffffffffffffffffffffffffff163314806106b957503360009081526004602052604090205460ff1680156106b9575060008581526003602052604090205473ffffffffffffffffffffffffffffffffffffffff16155b6106c584848484611537565b857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166306661abd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190611b07565b101561078d576040517f945074a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018790526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108409190611b81565b60008881526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16331480159061089a575060008781526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615155b80156108b057506108aa81611732565b60200151155b156108e7576040517fa33db4cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008781526003602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8a16908117909155915133815289917f7f9a7dcb234c909a09de2f344661ad9e5b24067adb97c908647c2edcbb121c30910160405180910390a350505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610a0560006117a6565b565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018490527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab69190611a9e565b6000848152600360205260409020548490600f9073ffffffffffffffffffffffffffffffffffffffff163314610aee84848484611537565b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018890526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba19190611b81565b60008981526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff163314801590610bdf5750610bdc81611732565b51155b15610c16576040517febfde6be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000888152600160205260409020610c2f90888861181b565b506001861115610d205760005b86811015610d1e576000610c51826001611c01565b90505b87811015610d1557888882818110610c6e57610c6e611ad8565b9050602002016020810190610c839190611a20565b73ffffffffffffffffffffffffffffffffffffffff16898984818110610cab57610cab611ad8565b9050602002016020810190610cc09190611a20565b73ffffffffffffffffffffffffffffffffffffffff1603610d0d576040517f7c70615600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600101610c54565b50600101610c3c565b505b877fb648241d83df6540fc10f2acc641e4bf80a1e84e7ae2f1f6b0ad204b8fee635b888833604051610d5493929190611c3b565b60405180910390a25050505050505050565b600082815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff80861685529252822054168015801590610dab5750610dab84826104fe565b15610db7579050610591565b600084815260016020526040812054905b81811015610eb0576000868152600160205260408120805483908110610df057610df0611ad8565b6000918252602090912001546040517fdf21a7dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8881166004830152602482018a90529091169150819063df21a7dd90604401602060405180830381865afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190611abb565b15610ea757935061059192505050565b50600101610dc8565b50600095945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591513381529192917f11207664cc48b0fa81c8674795f1d8f642960f38d5d2d305ad813093bed85fab910160405180910390a35050565b60008181526001602090815260409182902080548351818402810184019094528084526060939283018282801561103757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff16815260019091019060200180831161100c575b50505050509050919050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f2565b73ffffffffffffffffffffffffffffffffffffffff8116611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f2565b611170816117a6565b50565b3373ffffffffffffffffffffffffffffffffffffffff84161480159061125a57506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015260448201849052606482018390527f0000000000000000000000000000000000000000000000000000000000000000169063c161c93f90608401602060405180830381865afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112589190611abb565b155b801561132757506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015260006044830152606482018390527f0000000000000000000000000000000000000000000000000000000000000000169063c161c93f90608401602060405180830381865afa158015611301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113259190611abb565b155b1561135e576040517f075fd2b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b61136d82826104fe565b15611376575050565b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018390526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190611b81565b60008481526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff163314801590611467575061146481611732565b51155b1561149e576040517febfde6be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526001602081815260408084208054938401815584529281902090910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616908117909155915133815285917f409bccc07b7cf7807930526a24318212d614c59f2dde05a017a41efee144e7c8910160405180910390a3505050565b8015801561155b57503373ffffffffffffffffffffffffffffffffffffffff851614155b801561162857506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff858116602483015260448201859052606482018490527f0000000000000000000000000000000000000000000000000000000000000000169063c161c93f90608401602060405180830381865afa158015611602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116269190611abb565b155b80156116f557506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff858116602483015260006044830152606482018490527f0000000000000000000000000000000000000000000000000000000000000000169063c161c93f90608401602060405180830381865afa1580156116cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f39190611abb565b155b1561172c576040517f075fd2b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60408051606081018252600080825260208201819052918101919091526105916008836101000151901c604080516060808201835260008083526020808401829052928401528251908101835260018481168114825284811c811681149282019290925260029390931c8116149082015290565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215611893579160200282015b828111156118935781547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84351617825560209092019160019091019061183b565b5061189f9291506118a3565b5090565b5b8082111561189f57600081556001016118a4565b6000602082840312156118ca57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461117057600080fd5b60008060006060848603121561190857600080fd5b83359250602084013561191a816118d1565b9150604084013561192a816118d1565b809150509250925092565b6000806040838503121561194857600080fd5b82359150602083013561195a816118d1565b809150509250929050565b60008060006040848603121561197a57600080fd5b83359250602084013567ffffffffffffffff8082111561199957600080fd5b818601915086601f8301126119ad57600080fd5b8135818111156119bc57600080fd5b8760208260051b85010111156119d157600080fd5b6020830194508093505050509250925092565b801515811461117057600080fd5b60008060408385031215611a0557600080fd5b8235611a10816118d1565b9150602083013561195a816119e4565b600060208284031215611a3257600080fd5b8135611a3d816118d1565b9392505050565b6020808252825182820181905260009190848201906040850190845b81811015611a9257835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101611a60565b50909695505050505050565b600060208284031215611ab057600080fd5b8151611a3d816118d1565b600060208284031215611acd57600080fd5b8151611a3d816119e4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611b1957600080fd5b5051919050565b604051610120810167ffffffffffffffff81118282101715611b6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405290565b8051611b7c816118d1565b919050565b60006101208284031215611b9457600080fd5b611b9c611b20565b825181526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a082015260c083015160c0820152611be860e08401611b71565b60e0820152610100928301519281019290925250919050565b80820180821115610591577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6040808252810183905260008460608301825b86811015611c8b578235611c61816118d1565b73ffffffffffffffffffffffffffffffffffffffff16825260209283019290910190600101611c4e565b50809250505073ffffffffffffffffffffffffffffffffffffffff8316602083015294935050505056fea2646970667358221220a83439d78c2344a0046e0a474fee717a98c230df93d13b0c9fe2619c3092cce064736f6c634300081000330000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d30000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e6000000000000000000000000e9be6df23c7f9caba3005da2fa2d8714d340d0af
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80638620265011610097578063ad007d6311610066578063ad007d6314610252578063c5664e2114610279578063d17541531461029c578063f2fde38b146102bc57600080fd5b806386202650146101e75780638b79543c146101fa5780638da5cb5b14610221578063a1ed31751461023f57600080fd5b80636e49181f116100d35780636e49181f14610196578063714e7f32146101b9578063715018a6146101cc578063821b9fd8146101d457600080fd5b8063557e7155146100fa5780635dd8f6aa1461014b57806363d0850a14610181575b600080fd5b6101217f0000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6101216101593660046118b8565b60036020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61019461018f3660046118f3565b6102cf565b005b6101a96101a4366004611935565b6104fe565b6040519015158152602001610142565b6101946101c7366004611935565b610597565b610194610975565b6101946101e2366004611965565b610a07565b6101216101f5366004611935565b610d66565b6101217f000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d381565b60005473ffffffffffffffffffffffffffffffffffffffff16610121565b61019461024d3660046119f2565b610ebc565b6101217f0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb81565b6101a9610287366004611a20565b60046020526000908152604090205460ff1681565b6102af6102aa3660046118b8565b610fca565b6040516101429190611a44565b6101946102ca366004611a20565b611043565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018490527f000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d373ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa15801561035a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037e9190611a9e565b83601061038c838383611173565b6040517fdf21a7dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301526024820188905285169063df21a7dd90604401602060405180830381865afa1580156103ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104239190611abb565b610459576040517f1f5522f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104638685611363565b600086815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8981168086529184529382902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001694891694851790559051338152909189917fc670a502bbb9f8a4315f95eca901a9f99b65f89a2eb5705a58050e5c00f9d672910160405180910390a4505050505050565b600082815260016020526040812054815b8181101561058a576000858152600160205260409020805473ffffffffffffffffffffffffffffffffffffffff861691908390811061055057610550611ad8565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361058257600192505050610591565b60010161050f565b5060009150505b92915050565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d373ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610622573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106469190611a9e565b6000838152600360205260409020548390600e9073ffffffffffffffffffffffffffffffffffffffff163314806106b957503360009081526004602052604090205460ff1680156106b9575060008581526003602052604090205473ffffffffffffffffffffffffffffffffffffffff16155b6106c584848484611537565b857f000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d373ffffffffffffffffffffffffffffffffffffffff166306661abd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190611b07565b101561078d576040517f945074a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018790526000907f0000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e673ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108409190611b81565b60008881526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16331480159061089a575060008781526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615155b80156108b057506108aa81611732565b60200151155b156108e7576040517fa33db4cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008781526003602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8a16908117909155915133815289917f7f9a7dcb234c909a09de2f344661ad9e5b24067adb97c908647c2edcbb121c30910160405180910390a350505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610a0560006117a6565b565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018490527f000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d373ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab69190611a9e565b6000848152600360205260409020548490600f9073ffffffffffffffffffffffffffffffffffffffff163314610aee84848484611537565b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018890526000907f0000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e673ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba19190611b81565b60008981526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff163314801590610bdf5750610bdc81611732565b51155b15610c16576040517febfde6be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000888152600160205260409020610c2f90888861181b565b506001861115610d205760005b86811015610d1e576000610c51826001611c01565b90505b87811015610d1557888882818110610c6e57610c6e611ad8565b9050602002016020810190610c839190611a20565b73ffffffffffffffffffffffffffffffffffffffff16898984818110610cab57610cab611ad8565b9050602002016020810190610cc09190611a20565b73ffffffffffffffffffffffffffffffffffffffff1603610d0d576040517f7c70615600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600101610c54565b50600101610c3c565b505b877fb648241d83df6540fc10f2acc641e4bf80a1e84e7ae2f1f6b0ad204b8fee635b888833604051610d5493929190611c3b565b60405180910390a25050505050505050565b600082815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff80861685529252822054168015801590610dab5750610dab84826104fe565b15610db7579050610591565b600084815260016020526040812054905b81811015610eb0576000868152600160205260408120805483908110610df057610df0611ad8565b6000918252602090912001546040517fdf21a7dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8881166004830152602482018a90529091169150819063df21a7dd90604401602060405180830381865afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190611abb565b15610ea757935061059192505050565b50600101610dc8565b50600095945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591513381529192917f11207664cc48b0fa81c8674795f1d8f642960f38d5d2d305ad813093bed85fab910160405180910390a35050565b60008181526001602090815260409182902080548351818402810184019094528084526060939283018282801561103757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff16815260019091019060200180831161100c575b50505050509050919050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f2565b73ffffffffffffffffffffffffffffffffffffffff8116611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f2565b611170816117a6565b50565b3373ffffffffffffffffffffffffffffffffffffffff84161480159061125a57506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015260448201849052606482018390527f0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb169063c161c93f90608401602060405180830381865afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112589190611abb565b155b801561132757506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff848116602483015260006044830152606482018390527f0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb169063c161c93f90608401602060405180830381865afa158015611301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113259190611abb565b155b1561135e576040517f075fd2b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b61136d82826104fe565b15611376575050565b6040517f43a266c2000000000000000000000000000000000000000000000000000000008152600481018390526000907f0000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e673ffffffffffffffffffffffffffffffffffffffff16906343a266c29060240161012060405180830381865afa158015611405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114299190611b81565b60008481526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff163314801590611467575061146481611732565b51155b1561149e576040517febfde6be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526001602081815260408084208054938401815584529281902090910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616908117909155915133815285917f409bccc07b7cf7807930526a24318212d614c59f2dde05a017a41efee144e7c8910160405180910390a3505050565b8015801561155b57503373ffffffffffffffffffffffffffffffffffffffff851614155b801561162857506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff858116602483015260448201859052606482018490527f0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb169063c161c93f90608401602060405180830381865afa158015611602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116269190611abb565b155b80156116f557506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff858116602483015260006044830152606482018490527f0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb169063c161c93f90608401602060405180830381865afa1580156116cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f39190611abb565b155b1561172c576040517f075fd2b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60408051606081018252600080825260208201819052918101919091526105916008836101000151901c604080516060808201835260008083526020808401829052928401528251908101835260018481168114825284811c811681149282019290925260029390931c8116149082015290565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215611893579160200282015b828111156118935781547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84351617825560209092019160019091019061183b565b5061189f9291506118a3565b5090565b5b8082111561189f57600081556001016118a4565b6000602082840312156118ca57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461117057600080fd5b60008060006060848603121561190857600080fd5b83359250602084013561191a816118d1565b9150604084013561192a816118d1565b809150509250925092565b6000806040838503121561194857600080fd5b82359150602083013561195a816118d1565b809150509250929050565b60008060006040848603121561197a57600080fd5b83359250602084013567ffffffffffffffff8082111561199957600080fd5b818601915086601f8301126119ad57600080fd5b8135818111156119bc57600080fd5b8760208260051b85010111156119d157600080fd5b6020830194508093505050509250925092565b801515811461117057600080fd5b60008060408385031215611a0557600080fd5b8235611a10816118d1565b9150602083013561195a816119e4565b600060208284031215611a3257600080fd5b8135611a3d816118d1565b9392505050565b6020808252825182820181905260009190848201906040850190845b81811015611a9257835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101611a60565b50909695505050505050565b600060208284031215611ab057600080fd5b8151611a3d816118d1565b600060208284031215611acd57600080fd5b8151611a3d816119e4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611b1957600080fd5b5051919050565b604051610120810167ffffffffffffffff81118282101715611b6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405290565b8051611b7c816118d1565b919050565b60006101208284031215611b9457600080fd5b611b9c611b20565b825181526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a082015260c083015160c0820152611be860e08401611b71565b60e0820152610100928301519281019290925250919050565b80820180821115610591577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6040808252810183905260008460608301825b86811015611c8b578235611c61816118d1565b73ffffffffffffffffffffffffffffffffffffffff16825260209283019290910190600101611c4e565b50809250505073ffffffffffffffffffffffffffffffffffffffff8316602083015294935050505056fea2646970667358221220a83439d78c2344a0046e0a474fee717a98c230df93d13b0c9fe2619c3092cce064736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d30000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e6000000000000000000000000e9be6df23c7f9caba3005da2fa2d8714d340d0af
-----Decoded View---------------
Arg [0] : _operatorStore (address): 0x6F3C5afCa0c9eDf3926eF2dDF17c8ae6391afEfb
Arg [1] : _projects (address): 0xD8B4359143eda5B2d763E127Ed27c77addBc47d3
Arg [2] : _fundingCycleStore (address): 0x6f18cF9173136c0B5A6eBF45f19D58d3ff2E17e6
Arg [3] : _owner (address): 0xE9bE6df23C7f9CaBa3005DA2fa2d8714d340D0aF
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f3c5afca0c9edf3926ef2ddf17c8ae6391afefb
Arg [1] : 000000000000000000000000d8b4359143eda5b2d763e127ed27c77addbc47d3
Arg [2] : 0000000000000000000000006f18cf9173136c0b5a6ebf45f19d58d3ff2e17e6
Arg [3] : 000000000000000000000000e9be6df23c7f9caba3005da2fa2d8714d340d0af
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.