generated from jbx-protocol/juice-contract-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from mejango/touchup/return-hook
deploy returns the hook address and adds to allowe dposts
- Loading branch information
Showing
16 changed files
with
2,134 additions
and
510 deletions.
There are no files selected for viewing
947 changes: 947 additions & 0 deletions
947
deployments/compiler-inputs/c8660e6ab664b4186505e261472223cd.json
Large diffs are not rendered by default.
Oops, something went wrong.
96 changes: 55 additions & 41 deletions
96
deployments/croptop-core-testnet/arbitrum_sepolia/CTDeployer.json
Large diffs are not rendered by default.
Oops, something went wrong.
221 changes: 221 additions & 0 deletions
221
...m_sepolia/execution/7664a18b1f521da2b084f9636f40fc61f291da65860e33e3201cc41e966d8653.json
Large diffs are not rendered by default.
Oops, something went wrong.
188 changes: 41 additions & 147 deletions
188
deployments/croptop-core-testnet/base_sepolia/CTDeployer.json
Large diffs are not rendered by default.
Oops, something went wrong.
221 changes: 221 additions & 0 deletions
221
...e_sepolia/execution/7664a18b1f521da2b084f9636f40fc61f291da65860e33e3201cc41e966d8653.json
Large diffs are not rendered by default.
Oops, something went wrong.
198 changes: 46 additions & 152 deletions
198
deployments/croptop-core-testnet/optimism_sepolia/CTDeployer.json
Large diffs are not rendered by default.
Oops, something went wrong.
221 changes: 221 additions & 0 deletions
221
...m_sepolia/execution/7664a18b1f521da2b084f9636f40fc61f291da65860e33e3201cc41e966d8653.json
Large diffs are not rendered by default.
Oops, something went wrong.
202 changes: 48 additions & 154 deletions
202
deployments/croptop-core-testnet/sepolia/CTDeployer.json
Large diffs are not rendered by default.
Oops, something went wrong.
221 changes: 221 additions & 0 deletions
221
...t/sepolia/execution/7664a18b1f521da2b084f9636f40fc61f291da65860e33e3201cc41e966d8653.json
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule sphinx
updated
94 files
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
/// @notice Criteria for allowed posts. | ||
/// @custom:member category A category that should allow posts. | ||
/// @custom:member minimumPrice The minimum price that a post to the specified category should cost. | ||
/// @custom:member minimumTotalSupply The minimum total supply of NFTs that can be made available when minting. | ||
/// @custom:member maxTotalSupply The max total supply of NFTs that can be made available when minting. Leave as 0 for | ||
/// max. | ||
/// @custom:member allowedAddresses A list of addresses that are allowed to post on the category through Croptop. | ||
struct CTDeployerAllowedPost { | ||
uint24 category; | ||
uint104 minimumPrice; | ||
uint32 minimumTotalSupply; | ||
uint32 maximumTotalSupply; | ||
address[] allowedAddresses; | ||
} |