Skip to content

Commit

Permalink
Merge pull request #1546 from ArtBlocks/update-interface
Browse files Browse the repository at this point in the history
Add v3.2 function used by subgraph to interface
  • Loading branch information
ryley-o committed May 20, 2024
2 parents 0d39299 + 8b1ca8a commit 3fb86d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pragma solidity ^0.8.0;

import "./IAdminACLV0.sol";
import "./IGenArt721CoreContractV3_Base.sol";
import "./ISplitProviderV0.sol";

/**
* @notice Struct representing Engine contract configuration.
Expand Down Expand Up @@ -136,4 +137,10 @@ interface IGenArt721CoreContractV3_Engine is IGenArt721CoreContractV3_Base {
external
view
returns (uint256);

/**
* @notice The address of the current split provider being used by the contract.
* @return The address of the current split provider.
*/
function splitProvider() external view returns (ISplitProviderV0);
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// - https://github.com/0xSplits/splits-contracts-monorepo/blob/main/packages/splits-v2/src/libraries/SplitV2.sol
// - https://github.com/0xSplits/splits-contracts-monorepo/blob/main/packages/splits-v2/src/splitters/SplitFactoryV2.sol

pragma solidity 0.8.22;
pragma solidity ^0.8.0;

interface ISplitFactoryV2 {
/* -------------------------------------------------------------------------- */
Expand Down

0 comments on commit 3fb86d8

Please sign in to comment.