@bananapus/core-v6 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +112 -0
- package/SKILLS.md +151 -0
- package/docs/book.css +13 -0
- package/docs/book.toml +12 -0
- package/docs/solidity.min.js +74 -0
- package/docs/src/README.md +703 -0
- package/docs/src/SUMMARY.md +94 -0
- package/docs/src/src/JBChainlinkV3PriceFeed.sol/contract.JBChainlinkV3PriceFeed.md +83 -0
- package/docs/src/src/JBChainlinkV3SequencerPriceFeed.sol/contract.JBChainlinkV3SequencerPriceFeed.md +88 -0
- package/docs/src/src/JBController.sol/contract.JBController.md +1121 -0
- package/docs/src/src/JBDeadline.sol/contract.JBDeadline.md +84 -0
- package/docs/src/src/JBDirectory.sol/contract.JBDirectory.md +294 -0
- package/docs/src/src/JBERC20.sol/contract.JBERC20.md +190 -0
- package/docs/src/src/JBFeelessAddresses.sol/contract.JBFeelessAddresses.md +80 -0
- package/docs/src/src/JBFundAccessLimits.sol/contract.JBFundAccessLimits.md +253 -0
- package/docs/src/src/JBMultiTerminal.sol/contract.JBMultiTerminal.md +1472 -0
- package/docs/src/src/JBPermissions.sol/contract.JBPermissions.md +199 -0
- package/docs/src/src/JBPrices.sol/contract.JBPrices.md +154 -0
- package/docs/src/src/JBProjects.sol/contract.JBProjects.md +131 -0
- package/docs/src/src/JBRulesets.sol/contract.JBRulesets.md +677 -0
- package/docs/src/src/JBSplits.sol/contract.JBSplits.md +237 -0
- package/docs/src/src/JBTerminalStore.sol/contract.JBTerminalStore.md +591 -0
- package/docs/src/src/JBTokens.sol/contract.JBTokens.md +353 -0
- package/docs/src/src/README.md +25 -0
- package/docs/src/src/abstract/JBControlled.sol/abstract.JBControlled.md +64 -0
- package/docs/src/src/abstract/JBPermissioned.sol/abstract.JBPermissioned.md +84 -0
- package/docs/src/src/abstract/README.md +5 -0
- package/docs/src/src/enums/JBApprovalStatus.sol/enum.JBApprovalStatus.md +17 -0
- package/docs/src/src/enums/README.md +4 -0
- package/docs/src/src/interfaces/IJBCashOutHook.sol/interface.IJBCashOutHook.md +29 -0
- package/docs/src/src/interfaces/IJBCashOutTerminal.sol/interface.IJBCashOutTerminal.md +57 -0
- package/docs/src/src/interfaces/IJBControlled.sol/interface.IJBControlled.md +12 -0
- package/docs/src/src/interfaces/IJBController.sol/interface.IJBController.md +334 -0
- package/docs/src/src/interfaces/IJBDirectory.sol/interface.IJBDirectory.md +108 -0
- package/docs/src/src/interfaces/IJBDirectoryAccessControl.sol/interface.IJBDirectoryAccessControl.md +19 -0
- package/docs/src/src/interfaces/IJBFeeTerminal.sol/interface.IJBFeeTerminal.md +91 -0
- package/docs/src/src/interfaces/IJBFeelessAddresses.sol/interface.IJBFeelessAddresses.md +26 -0
- package/docs/src/src/interfaces/IJBFundAccessLimits.sol/interface.IJBFundAccessLimits.md +88 -0
- package/docs/src/src/interfaces/IJBMigratable.sol/interface.IJBMigratable.md +29 -0
- package/docs/src/src/interfaces/IJBMultiTerminal.sol/interface.IJBMultiTerminal.md +50 -0
- package/docs/src/src/interfaces/IJBPayHook.sol/interface.IJBPayHook.md +28 -0
- package/docs/src/src/interfaces/IJBPayoutTerminal.sol/interface.IJBPayoutTerminal.md +105 -0
- package/docs/src/src/interfaces/IJBPermissioned.sol/interface.IJBPermissioned.md +12 -0
- package/docs/src/src/interfaces/IJBPermissions.sol/interface.IJBPermissions.md +74 -0
- package/docs/src/src/interfaces/IJBPermitTerminal.sol/interface.IJBPermitTerminal.md +15 -0
- package/docs/src/src/interfaces/IJBPriceFeed.sol/interface.IJBPriceFeed.md +12 -0
- package/docs/src/src/interfaces/IJBPrices.sol/interface.IJBPrices.md +74 -0
- package/docs/src/src/interfaces/IJBProjectUriRegistry.sol/interface.IJBProjectUriRegistry.md +19 -0
- package/docs/src/src/interfaces/IJBProjects.sol/interface.IJBProjects.md +49 -0
- package/docs/src/src/interfaces/IJBRulesetApprovalHook.sol/interface.IJBRulesetApprovalHook.md +35 -0
- package/docs/src/src/interfaces/IJBRulesetDataHook.sol/interface.IJBRulesetDataHook.md +97 -0
- package/docs/src/src/interfaces/IJBRulesets.sol/interface.IJBRulesets.md +165 -0
- package/docs/src/src/interfaces/IJBSplitHook.sol/interface.IJBSplitHook.md +31 -0
- package/docs/src/src/interfaces/IJBSplits.sol/interface.IJBSplits.md +35 -0
- package/docs/src/src/interfaces/IJBTerminal.sol/interface.IJBTerminal.md +141 -0
- package/docs/src/src/interfaces/IJBTerminalStore.sol/interface.IJBTerminalStore.md +198 -0
- package/docs/src/src/interfaces/IJBToken.sol/interface.IJBToken.md +54 -0
- package/docs/src/src/interfaces/IJBTokenUriResolver.sol/interface.IJBTokenUriResolver.md +12 -0
- package/docs/src/src/interfaces/IJBTokens.sol/interface.IJBTokens.md +151 -0
- package/docs/src/src/interfaces/README.md +33 -0
- package/docs/src/src/libraries/JBCashOuts.sol/library.JBCashOuts.md +40 -0
- package/docs/src/src/libraries/JBConstants.sol/library.JBConstants.md +52 -0
- package/docs/src/src/libraries/JBCurrencyIds.sol/library.JBCurrencyIds.md +19 -0
- package/docs/src/src/libraries/JBFees.sol/library.JBFees.md +52 -0
- package/docs/src/src/libraries/JBFixedPointNumber.sol/library.JBFixedPointNumber.md +12 -0
- package/docs/src/src/libraries/JBMetadataResolver.sol/library.JBMetadataResolver.md +242 -0
- package/docs/src/src/libraries/JBRulesetMetadataResolver.sol/library.JBRulesetMetadataResolver.md +180 -0
- package/docs/src/src/libraries/JBSplitGroupIds.sol/library.JBSplitGroupIds.md +14 -0
- package/docs/src/src/libraries/JBSurplus.sol/library.JBSurplus.md +44 -0
- package/docs/src/src/libraries/README.md +12 -0
- package/docs/src/src/periphery/JBDeadline1Day.sol/contract.JBDeadline1Day.md +15 -0
- package/docs/src/src/periphery/JBDeadline3Days.sol/contract.JBDeadline3Days.md +15 -0
- package/docs/src/src/periphery/JBDeadline3Hours.sol/contract.JBDeadline3Hours.md +15 -0
- package/docs/src/src/periphery/JBDeadline7Days.sol/contract.JBDeadline7Days.md +15 -0
- package/docs/src/src/periphery/JBMatchingPriceFeed.sol/contract.JBMatchingPriceFeed.md +22 -0
- package/docs/src/src/periphery/README.md +8 -0
- package/docs/src/src/structs/JBAccountingContext.sol/struct.JBAccountingContext.md +20 -0
- package/docs/src/src/structs/JBAfterCashOutRecordedContext.sol/struct.JBAfterCashOutRecordedContext.md +43 -0
- package/docs/src/src/structs/JBAfterPayRecordedContext.sol/struct.JBAfterPayRecordedContext.md +42 -0
- package/docs/src/src/structs/JBBeforeCashOutRecordedContext.sol/struct.JBBeforeCashOutRecordedContext.md +45 -0
- package/docs/src/src/structs/JBBeforePayRecordedContext.sol/struct.JBBeforePayRecordedContext.md +41 -0
- package/docs/src/src/structs/JBCashOutHookSpecification.sol/struct.JBCashOutHookSpecification.md +22 -0
- package/docs/src/src/structs/JBCurrencyAmount.sol/struct.JBCurrencyAmount.md +17 -0
- package/docs/src/src/structs/JBFee.sol/struct.JBFee.md +20 -0
- package/docs/src/src/structs/JBFundAccessLimitGroup.sol/struct.JBFundAccessLimitGroup.md +39 -0
- package/docs/src/src/structs/JBPayHookSpecification.sol/struct.JBPayHookSpecification.md +22 -0
- package/docs/src/src/structs/JBPermissionsData.sol/struct.JBPermissionsData.md +21 -0
- package/docs/src/src/structs/JBRuleset.sol/struct.JBRuleset.md +55 -0
- package/docs/src/src/structs/JBRulesetConfig.sol/struct.JBRulesetConfig.md +51 -0
- package/docs/src/src/structs/JBRulesetMetadata.sol/struct.JBRulesetMetadata.md +79 -0
- package/docs/src/src/structs/JBRulesetWeightCache.sol/struct.JBRulesetWeightCache.md +16 -0
- package/docs/src/src/structs/JBRulesetWithMetadata.sol/struct.JBRulesetWithMetadata.md +16 -0
- package/docs/src/src/structs/JBSingleAllowance.sol/struct.JBSingleAllowance.md +26 -0
- package/docs/src/src/structs/JBSplit.sol/struct.JBSplit.md +49 -0
- package/docs/src/src/structs/JBSplitGroup.sol/struct.JBSplitGroup.md +17 -0
- package/docs/src/src/structs/JBSplitHookContext.sol/struct.JBSplitHookContext.md +29 -0
- package/docs/src/src/structs/JBTerminalConfig.sol/struct.JBTerminalConfig.md +16 -0
- package/docs/src/src/structs/JBTokenAmount.sol/struct.JBTokenAmount.md +23 -0
- package/docs/src/src/structs/README.md +25 -0
- package/foundry.lock +11 -0
- package/foundry.toml +41 -0
- package/package.json +38 -0
- package/remappings.txt +1 -0
- package/script/Deploy.s.sol +111 -0
- package/script/DeployPeriphery.s.sol +287 -0
- package/script/helpers/CoreDeploymentLib.sol +121 -0
- package/slither-ci.config.json +10 -0
- package/sphinx.lock +507 -0
- package/src/JBChainlinkV3PriceFeed.sol +77 -0
- package/src/JBChainlinkV3SequencerPriceFeed.sol +75 -0
- package/src/JBController.sol +1186 -0
- package/src/JBDeadline.sol +73 -0
- package/src/JBDirectory.sol +343 -0
- package/src/JBERC20.sol +131 -0
- package/src/JBFeelessAddresses.sol +54 -0
- package/src/JBFundAccessLimits.sol +308 -0
- package/src/JBMultiTerminal.sol +2024 -0
- package/src/JBPermissions.sol +252 -0
- package/src/JBPrices.sol +227 -0
- package/src/JBProjects.sol +126 -0
- package/src/JBRulesets.sol +1093 -0
- package/src/JBSplits.sol +324 -0
- package/src/JBTerminalStore.sol +908 -0
- package/src/JBTokens.sol +376 -0
- package/src/abstract/JBControlled.sol +48 -0
- package/src/abstract/JBPermissioned.sol +77 -0
- package/src/enums/JBApprovalStatus.sol +12 -0
- package/src/interfaces/IJBCashOutHook.sol +15 -0
- package/src/interfaces/IJBCashOutTerminal.sol +51 -0
- package/src/interfaces/IJBControlled.sol +10 -0
- package/src/interfaces/IJBController.sol +280 -0
- package/src/interfaces/IJBDirectory.sol +69 -0
- package/src/interfaces/IJBDirectoryAccessControl.sol +15 -0
- package/src/interfaces/IJBFeeTerminal.sol +61 -0
- package/src/interfaces/IJBFeelessAddresses.sol +17 -0
- package/src/interfaces/IJBFundAccessLimits.sol +94 -0
- package/src/interfaces/IJBMigratable.sol +24 -0
- package/src/interfaces/IJBMultiTerminal.sol +36 -0
- package/src/interfaces/IJBPayHook.sol +14 -0
- package/src/interfaces/IJBPayoutTerminal.sol +92 -0
- package/src/interfaces/IJBPermissioned.sol +10 -0
- package/src/interfaces/IJBPermissions.sol +71 -0
- package/src/interfaces/IJBPermitTerminal.sol +14 -0
- package/src/interfaces/IJBPriceFeed.sol +10 -0
- package/src/interfaces/IJBPrices.sol +65 -0
- package/src/interfaces/IJBProjectUriRegistry.sol +15 -0
- package/src/interfaces/IJBProjects.sol +27 -0
- package/src/interfaces/IJBRulesetApprovalHook.sol +21 -0
- package/src/interfaces/IJBRulesetDataHook.sol +56 -0
- package/src/interfaces/IJBRulesets.sol +151 -0
- package/src/interfaces/IJBSplitHook.sol +16 -0
- package/src/interfaces/IJBSplits.sol +28 -0
- package/src/interfaces/IJBTerminal.sol +120 -0
- package/src/interfaces/IJBTerminalStore.sol +225 -0
- package/src/interfaces/IJBToken.sol +39 -0
- package/src/interfaces/IJBTokenUriResolver.sol +10 -0
- package/src/interfaces/IJBTokens.sol +113 -0
- package/src/libraries/JBCashOuts.sol +120 -0
- package/src/libraries/JBConstants.sol +14 -0
- package/src/libraries/JBCurrencyIds.sol +7 -0
- package/src/libraries/JBFees.sol +28 -0
- package/src/libraries/JBFixedPointNumber.sol +12 -0
- package/src/libraries/JBMetadataResolver.sol +306 -0
- package/src/libraries/JBRulesetMetadataResolver.sol +160 -0
- package/src/libraries/JBSplitGroupIds.sol +7 -0
- package/src/libraries/JBSurplus.sol +40 -0
- package/src/periphery/JBDeadline1Day.sol +8 -0
- package/src/periphery/JBDeadline3Days.sol +8 -0
- package/src/periphery/JBDeadline3Hours.sol +8 -0
- package/src/periphery/JBDeadline7Days.sol +8 -0
- package/src/periphery/JBMatchingPriceFeed.sol +13 -0
- package/src/structs/JBAccountingContext.sol +12 -0
- package/src/structs/JBAfterCashOutRecordedContext.sol +30 -0
- package/src/structs/JBAfterPayRecordedContext.sol +29 -0
- package/src/structs/JBBeforeCashOutRecordedContext.sol +31 -0
- package/src/structs/JBBeforePayRecordedContext.sol +28 -0
- package/src/structs/JBCashOutHookSpecification.sol +15 -0
- package/src/structs/JBCurrencyAmount.sol +10 -0
- package/src/structs/JBFee.sol +12 -0
- package/src/structs/JBFundAccessLimitGroup.sol +28 -0
- package/src/structs/JBPayHookSpecification.sol +15 -0
- package/src/structs/JBPermissionsData.sol +13 -0
- package/src/structs/JBRuleset.sol +42 -0
- package/src/structs/JBRulesetConfig.sol +43 -0
- package/src/structs/JBRulesetMetadata.sol +56 -0
- package/src/structs/JBRulesetWeightCache.sol +9 -0
- package/src/structs/JBRulesetWithMetadata.sol +12 -0
- package/src/structs/JBSingleAllowance.sol +16 -0
- package/src/structs/JBSplit.sol +37 -0
- package/src/structs/JBSplitGroup.sol +12 -0
- package/src/structs/JBSplitHookContext.sol +20 -0
- package/src/structs/JBTerminalConfig.sol +12 -0
- package/src/structs/JBTokenAmount.sol +14 -0
- package/test/AuditExploits.t.sol +2710 -0
- package/test/ComprehensiveInvariant.t.sol +298 -0
- package/test/EconomicSimulation.t.sol +340 -0
- package/test/EntryPointPermutations.t.sol +671 -0
- package/test/FlashLoanAttacks.t.sol +792 -0
- package/test/PermissionEscalation.t.sol +679 -0
- package/test/RulesetTransitions.t.sol +699 -0
- package/test/SplitLoopTests.t.sol +731 -0
- package/test/TestAccessToFunds.sol +2644 -0
- package/test/TestCashOut.sol +185 -0
- package/test/TestCashOutCountFor.sol +272 -0
- package/test/TestCashOutHooks.sol +317 -0
- package/test/TestCashOutTimingEdge.sol +229 -0
- package/test/TestDurationUnderflow.sol +220 -0
- package/test/TestFeeProcessingFailure.sol +208 -0
- package/test/TestFees.sol +604 -0
- package/test/TestInterfaceSupport.sol +62 -0
- package/test/TestJBERC20Inheritance.sol +91 -0
- package/test/TestLaunchProject.sol +176 -0
- package/test/TestMetaTx.sol +203 -0
- package/test/TestMetadataParserLib.sol +438 -0
- package/test/TestMigrationHeldFees.sol +249 -0
- package/test/TestMintTokensOf.sol +172 -0
- package/test/TestMultiTokenSurplus.sol +206 -0
- package/test/TestMultipleAccessLimits.sol +642 -0
- package/test/TestPayBurnRedeemFlow.sol +180 -0
- package/test/TestPayHooks.sol +190 -0
- package/test/TestPermissions.sol +305 -0
- package/test/TestPermissionsEdge.sol +286 -0
- package/test/TestPermit2Terminal.sol +339 -0
- package/test/TestRulesetQueueing.sol +1001 -0
- package/test/TestRulesetQueuingStress.sol +778 -0
- package/test/TestRulesetWeightCaching.sol +177 -0
- package/test/TestSplits.sol +369 -0
- package/test/TestTerminalMigration.sol +167 -0
- package/test/TestTokenFlow.sol +174 -0
- package/test/WeirdTokenTests.t.sol +764 -0
- package/test/formal/BondingCurveProperties.t.sol +411 -0
- package/test/formal/FeeProperties.t.sol +246 -0
- package/test/helpers/JBTest.sol +129 -0
- package/test/helpers/MetadataResolverHelper.sol +116 -0
- package/test/helpers/TestBaseWorkflow.sol +317 -0
- package/test/invariants/Phase3DeepInvariant.t.sol +404 -0
- package/test/invariants/RulesetsInvariant.t.sol +115 -0
- package/test/invariants/TerminalStoreInvariant.t.sol +220 -0
- package/test/invariants/TokensInvariant.t.sol +184 -0
- package/test/invariants/handlers/ComprehensiveHandler.sol +285 -0
- package/test/invariants/handlers/EconomicHandler.sol +347 -0
- package/test/invariants/handlers/Phase3Handler.sol +414 -0
- package/test/invariants/handlers/RulesetsHandler.sol +111 -0
- package/test/invariants/handlers/TerminalStoreHandler.sol +146 -0
- package/test/invariants/handlers/TokensHandler.sol +127 -0
- package/test/mock/ERC2771ForwarderMock.sol +37 -0
- package/test/mock/MockERC20.sol +18 -0
- package/test/mock/MockMaliciousBeneficiary.sol +67 -0
- package/test/mock/MockMaliciousSplitHook.sol +42 -0
- package/test/mock/MockPriceFeed.sol +20 -0
- package/test/trees/JBController/burnTokensOf.tree +9 -0
- package/test/trees/JBController/claimTokensFor.tree +5 -0
- package/test/trees/JBController/deployERC20For.tree +5 -0
- package/test/trees/JBController/getRulesetOf.tree +5 -0
- package/test/trees/JBController/launchProjectFor.tree +12 -0
- package/test/trees/JBController/launchRulesetsFor.tree +8 -0
- package/test/trees/JBController/migrateController.tree +12 -0
- package/test/trees/JBController/mintTokensOf.tree +12 -0
- package/test/trees/JBController/payReservedTokenToTerminal.tree +8 -0
- package/test/trees/JBController/receiveMigrationFrom.tree +4 -0
- package/test/trees/JBController/sendReservedTokensToSplitsOf.tree +12 -0
- package/test/trees/JBController/setMetadataOf.tree +5 -0
- package/test/trees/JBController/setSplitGroupsOf.tree +5 -0
- package/test/trees/JBController/setTokenFor.tree +5 -0
- package/test/trees/JBController/transferCreditsFrom.tree +8 -0
- package/test/trees/JBDirectory/primaryTerminalOf.tree +8 -0
- package/test/trees/JBDirectory/setControllerOf.tree +11 -0
- package/test/trees/JBDirectory/setPrimaryTerminalOf.tree +15 -0
- package/test/trees/JBDirectory/setTerminalsOf.tree +11 -0
- package/test/trees/JBERC20/initialize.tree +7 -0
- package/test/trees/JBERC20/name.tree +5 -0
- package/test/trees/JBERC20/nonces.tree +5 -0
- package/test/trees/JBERC20/symbol.tree +5 -0
- package/test/trees/JBFeelessAddresses/setFeelessAddress.tree +5 -0
- package/test/trees/JBFeelessAddresses/supportsInterface.tree +5 -0
- package/test/trees/JBFundAccessLimits/payoutLimitOf.tree +5 -0
- package/test/trees/JBFundAccessLimits/payoutLimitsOf.tree +8 -0
- package/test/trees/JBFundAccessLimits/setFundAccessLimitsFor.tree +18 -0
- package/test/trees/JBFundAccessLimits/surplusAllowanceOf.tree +5 -0
- package/test/trees/JBFundAccessLimits/surplusAllowancesOf.tree +8 -0
- package/test/trees/JBMetadataResolver/getDataFor.tree +8 -0
- package/test/trees/JBMultiTerminal/accountingContextsOf.tree +5 -0
- package/test/trees/JBMultiTerminal/addAccountingContextsFor.tree +10 -0
- package/test/trees/JBMultiTerminal/addToBalanceOf.tree +23 -0
- package/test/trees/JBMultiTerminal/cashOutTokensOf.tree +23 -0
- package/test/trees/JBMultiTerminal/executePayout.tree +32 -0
- package/test/trees/JBMultiTerminal/executeProcessFee.tree +14 -0
- package/test/trees/JBMultiTerminal/migrateBalanceOf.tree +12 -0
- package/test/trees/JBMultiTerminal/pay.tree +23 -0
- package/test/trees/JBMultiTerminal/processHeldFeesOf.tree +8 -0
- package/test/trees/JBMultiTerminal/sendPayoutsOf.tree +34 -0
- package/test/trees/JBMultiTerminal/useAllowanceOf.tree +16 -0
- package/test/trees/JBPermissions/hasPermission.tree +8 -0
- package/test/trees/JBPermissions/hasPermissions.tree +8 -0
- package/test/trees/JBPermissions/setPermissionsFor.tree +5 -0
- package/test/trees/JBPrices/addPriceFeedFor.tree +14 -0
- package/test/trees/JBPrices/pricePerUnitOf.tree +11 -0
- package/test/trees/JBProjects/createFor.tree +11 -0
- package/test/trees/JBProjects/setTokenUriResolver.tree +5 -0
- package/test/trees/JBProjects/supportsInterface.tree +9 -0
- package/test/trees/JBProjects/tokenURI.tree +5 -0
- package/test/trees/JBRulesets/currentApprovalStatusForLatestRulesetOf.tree +8 -0
- package/test/trees/JBRulesets/currentOf.tree +12 -0
- package/test/trees/JBRulesets/getRulesetOf.tree +5 -0
- package/test/trees/JBRulesets/latestQueuedRulesetOf.tree +10 -0
- package/test/trees/JBRulesets/rulesetsOf.tree +11 -0
- package/test/trees/JBRulesets/upcomingRulesetOf.tree +20 -0
- package/test/trees/JBRulesets/updateRulesetWeightCache.tree +5 -0
- package/test/trees/JBSplits/setSplitGroupsOf.tree +17 -0
- package/test/trees/JBSplits/splitsOf.tree +5 -0
- package/test/trees/JBTerminalStore/currentReclaimableSurplusOf.tree +16 -0
- package/test/trees/JBTerminalStore/currentSurplusOf.tree +25 -0
- package/test/trees/JBTerminalStore/currentTotalSurplusOf.tree +5 -0
- package/test/trees/JBTerminalStore/recordCashOutsFor.tree +16 -0
- package/test/trees/JBTerminalStore/recordPaymentFrom.tree +14 -0
- package/test/trees/JBTerminalStore/recordPayoutFor.tree +10 -0
- package/test/trees/JBTerminalStore/recordTerminalMigration.tree +5 -0
- package/test/trees/JBTerminalStore/recordUsedAllowanceOf.tree +10 -0
- package/test/trees/JBTokens/burnFrom.tree +10 -0
- package/test/trees/JBTokens/claimTokensFor.tree +10 -0
- package/test/trees/JBTokens/deployERC20For.tree +12 -0
- package/test/trees/JBTokens/mintFor.tree +10 -0
- package/test/trees/JBTokens/setTokenFor.tree +11 -0
- package/test/trees/JBTokens/totalBalanceOf.tree +5 -0
- package/test/trees/JBTokens/totalSupplyOf.tree +5 -0
- package/test/trees/JBTokens/transferCreditsFrom.tree +8 -0
- package/test/trees/mintTokensOf.tree +12 -0
- package/test/units/static/JBChainlinkV3PriceFeed/TestPriceFeed.sol +220 -0
- package/test/units/static/JBController/JBControllerSetup.sol +40 -0
- package/test/units/static/JBController/TestBurnTokensOf.sol +107 -0
- package/test/units/static/JBController/TestClaimTokensFor.sol +60 -0
- package/test/units/static/JBController/TestDeployErc20For.sol +80 -0
- package/test/units/static/JBController/TestLaunchProjectFor.sol +282 -0
- package/test/units/static/JBController/TestLaunchRulesetsFor.sol +322 -0
- package/test/units/static/JBController/TestMigrateController.sol +148 -0
- package/test/units/static/JBController/TestMintTokensOfUnits.sol +102 -0
- package/test/units/static/JBController/TestPayReservedTokenToTerminal.sol +71 -0
- package/test/units/static/JBController/TestReceiveMigrationFrom.sol +95 -0
- package/test/units/static/JBController/TestRulesetViews.sol +219 -0
- package/test/units/static/JBController/TestSendReservedTokensToSplitsOf.sol +595 -0
- package/test/units/static/JBController/TestSetSplitGroupsOf.sol +63 -0
- package/test/units/static/JBController/TestSetTokenFor.sol +227 -0
- package/test/units/static/JBController/TestSetUriOf.sol +53 -0
- package/test/units/static/JBController/TestTransferCreditsFrom.sol +159 -0
- package/test/units/static/JBDeadline/TestDeadlineFuzz.sol +194 -0
- package/test/units/static/JBDirectory/JBDirectorySetup.sol +22 -0
- package/test/units/static/JBDirectory/TestPrimaryTerminalOf.sol +122 -0
- package/test/units/static/JBDirectory/TestSetControllerOf.sol +173 -0
- package/test/units/static/JBDirectory/TestSetControllerOfMigrationOrder.sol +98 -0
- package/test/units/static/JBDirectory/TestSetPrimaryTerminalOf.sol +169 -0
- package/test/units/static/JBDirectory/TestSetTerminalsOf.sol +128 -0
- package/test/units/static/JBERC20/JBERC20Setup.sol +20 -0
- package/test/units/static/JBERC20/SigUtils.sol +34 -0
- package/test/units/static/JBERC20/TestInitialize.sol +54 -0
- package/test/units/static/JBERC20/TestName.sol +30 -0
- package/test/units/static/JBERC20/TestNonces.sol +59 -0
- package/test/units/static/JBERC20/TestSymbol.sol +31 -0
- package/test/units/static/JBFeelessAdresses/JBFeelessSetup.sol +20 -0
- package/test/units/static/JBFeelessAdresses/TestInterfaces.sol +29 -0
- package/test/units/static/JBFeelessAdresses/TestSetFeelessAddress.sol +35 -0
- package/test/units/static/JBFees/TestFeesFuzz.sol +78 -0
- package/test/units/static/JBFixedPointNumber/TestAdjustDecimals.sol +16 -0
- package/test/units/static/JBFixedPointNumber/TestAdjustDecimalsFuzz.sol +71 -0
- package/test/units/static/JBFundAccessLimits/JBFundAccessSetup.sol +21 -0
- package/test/units/static/JBFundAccessLimits/TestFundAccessLimitsEdge.sol +159 -0
- package/test/units/static/JBFundAccessLimits/TestPayoutLimitOf.sol +56 -0
- package/test/units/static/JBFundAccessLimits/TestPayoutLimitsOf.sol +94 -0
- package/test/units/static/JBFundAccessLimits/TestSetFundAccessLimitsFor.sol +182 -0
- package/test/units/static/JBFundAccessLimits/TestSurplusAllowanceOf.sol +61 -0
- package/test/units/static/JBFundAccessLimits/TestSurplusAllowancesOf.sol +96 -0
- package/test/units/static/JBMetadataResolver/TestGetDataFor.sol +89 -0
- package/test/units/static/JBMetadataResolver/TestMetadataResolverFuzz.sol +227 -0
- package/test/units/static/JBMetadataResolver/TestMetadataResolverM20M21.sol +245 -0
- package/test/units/static/JBMultiTerminal/JBMultiTerminalSetup.sol +39 -0
- package/test/units/static/JBMultiTerminal/TestAccountingContextsOf.sol +65 -0
- package/test/units/static/JBMultiTerminal/TestAddAccountingContextsFor.sol +313 -0
- package/test/units/static/JBMultiTerminal/TestAddToBalanceOf.sol +432 -0
- package/test/units/static/JBMultiTerminal/TestCashOutTokensOf.sol +478 -0
- package/test/units/static/JBMultiTerminal/TestExecutePayout.sol +577 -0
- package/test/units/static/JBMultiTerminal/TestExecuteProcessFee.sol +176 -0
- package/test/units/static/JBMultiTerminal/TestMigrateBalanceOf.sol +190 -0
- package/test/units/static/JBMultiTerminal/TestPay.sol +514 -0
- package/test/units/static/JBMultiTerminal/TestProcessHeldFeesOf.sol +29 -0
- package/test/units/static/JBMultiTerminal/TestSendPayoutsOf.sol +243 -0
- package/test/units/static/JBMultiTerminal/TestUseAllowanceOf.sol +310 -0
- package/test/units/static/JBPermissions/JBPermissionsSetup.sol +18 -0
- package/test/units/static/JBPermissions/TestHasPermission.sol +50 -0
- package/test/units/static/JBPermissions/TestHasPermissions.sol +93 -0
- package/test/units/static/JBPermissions/TestSetPermissionsFor.sol +62 -0
- package/test/units/static/JBPrices/JBPricesSetup.sol +26 -0
- package/test/units/static/JBPrices/TestAddPriceFeedFor.sol +102 -0
- package/test/units/static/JBPrices/TestPricePerUnitOf.sol +129 -0
- package/test/units/static/JBPrices/TestPrices.sol +262 -0
- package/test/units/static/JBProjects/JBProjectsSetup.sol +20 -0
- package/test/units/static/JBProjects/TestCreateFor.sol +69 -0
- package/test/units/static/JBProjects/TestInitialProject.sol +19 -0
- package/test/units/static/JBProjects/TestInterfaces.sol +27 -0
- package/test/units/static/JBProjects/TestSetResolver.sol +36 -0
- package/test/units/static/JBProjects/TestTokenUri.sol +38 -0
- package/test/units/static/JBRulesetMetadataResolver/TestSetCashOutTaxRateTo.sol +99 -0
- package/test/units/static/JBRulesets/JBRulesetsSetup.sol +21 -0
- package/test/units/static/JBRulesets/TestCurrentApprovalStatusForLatestRulesetOf.sol +257 -0
- package/test/units/static/JBRulesets/TestCurrentOf.sol +231 -0
- package/test/units/static/JBRulesets/TestGetRulesetOf.sol +94 -0
- package/test/units/static/JBRulesets/TestLatestQueuedRulesetOf.sol +252 -0
- package/test/units/static/JBRulesets/TestRulesets.sol +617 -0
- package/test/units/static/JBRulesets/TestRulesetsOf.sol +37 -0
- package/test/units/static/JBRulesets/TestUpcomingRulesetOf.sol +526 -0
- package/test/units/static/JBRulesets/TestUpdateRulesetWeightCache.sol +91 -0
- package/test/units/static/JBSplits/JBSplitsSetup.sol +23 -0
- package/test/units/static/JBSplits/TestSelfManagedSplitGroups.sol +502 -0
- package/test/units/static/JBSplits/TestSetSplitGroupsOf.sol +370 -0
- package/test/units/static/JBSplits/TestSplitsLockedEdge.sol +262 -0
- package/test/units/static/JBSplits/TestSplitsOf.sol +24 -0
- package/test/units/static/JBSplits/TestSplitsPacking.sol +33 -0
- package/test/units/static/JBSurplus/TestSurplusFuzz.sol +125 -0
- package/test/units/static/JBTerminalStore/JBTerminalStoreSetup.sol +23 -0
- package/test/units/static/JBTerminalStore/TestCurrentReclaimableSurplusOf.sol +434 -0
- package/test/units/static/JBTerminalStore/TestCurrentSurplusOf.sol +428 -0
- package/test/units/static/JBTerminalStore/TestCurrentTotalSurplusOf.sol +65 -0
- package/test/units/static/JBTerminalStore/TestRecordCashOutsFor.sol +479 -0
- package/test/units/static/JBTerminalStore/TestRecordPaymentFrom.sol +508 -0
- package/test/units/static/JBTerminalStore/TestRecordPayoutFor.sol +257 -0
- package/test/units/static/JBTerminalStore/TestRecordTerminalMigration.sol +131 -0
- package/test/units/static/JBTerminalStore/TestRecordUsedAllowanceOf.sol +390 -0
- package/test/units/static/JBTerminalStore/TestUint224Overflow.sol +187 -0
- package/test/units/static/JBTokens/JBTokensSetup.sol +23 -0
- package/test/units/static/JBTokens/TestBurnFrom.sol +104 -0
- package/test/units/static/JBTokens/TestClaimTokensFor.sol +107 -0
- package/test/units/static/JBTokens/TestDeployERC20ForUnits.sol +89 -0
- package/test/units/static/JBTokens/TestMintFor.sol +97 -0
- package/test/units/static/JBTokens/TestSetTokenFor.sol +95 -0
- package/test/units/static/JBTokens/TestTotalBalanceOf.sol +65 -0
- package/test/units/static/JBTokens/TestTotalSupplyOf.sol +56 -0
- package/test/units/static/JBTokens/TestTransferCreditsFrom.sol +54 -0
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity 0.8.23;
|
|
3
|
+
|
|
4
|
+
import "@sphinx-labs/contracts/SphinxPlugin.sol";
|
|
5
|
+
import {Script, stdJson, VmSafe} from "forge-std/Script.sol";
|
|
6
|
+
import {CoreDeployment, CoreDeploymentLib} from "./helpers/CoreDeploymentLib.sol";
|
|
7
|
+
|
|
8
|
+
import {IPermit2} from "@uniswap/permit2/src/interfaces/IPermit2.sol";
|
|
9
|
+
import {IJBPriceFeed} from "src/interfaces/IJBPriceFeed.sol";
|
|
10
|
+
import {JBPermissions} from "src/JBPermissions.sol";
|
|
11
|
+
import {JBProjects} from "src/JBProjects.sol";
|
|
12
|
+
import {JBPrices} from "src/JBPrices.sol";
|
|
13
|
+
import {JBDeadline3Hours} from "src/periphery/JBDeadline3Hours.sol";
|
|
14
|
+
import {JBDeadline1Day} from "src/periphery/JBDeadline1Day.sol";
|
|
15
|
+
import {JBDeadline3Days} from "src/periphery/JBDeadline3Days.sol";
|
|
16
|
+
import {JBDeadline7Days} from "src/periphery/JBDeadline7Days.sol";
|
|
17
|
+
import {JBMatchingPriceFeed} from "src/periphery/JBMatchingPriceFeed.sol";
|
|
18
|
+
import {JBChainlinkV3PriceFeed, AggregatorV3Interface} from "src/JBChainlinkV3PriceFeed.sol";
|
|
19
|
+
import {AggregatorV2V3Interface} from "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV2V3Interface.sol";
|
|
20
|
+
import {JBChainlinkV3SequencerPriceFeed} from "src/JBChainlinkV3SequencerPriceFeed.sol";
|
|
21
|
+
import {JBRulesets} from "src/JBRulesets.sol";
|
|
22
|
+
import {JBDirectory} from "src/JBDirectory.sol";
|
|
23
|
+
import {JBERC20} from "src/JBERC20.sol";
|
|
24
|
+
import {JBTokens} from "src/JBTokens.sol";
|
|
25
|
+
import {JBSplits} from "src/JBSplits.sol";
|
|
26
|
+
import {JBFeelessAddresses} from "src/JBFeelessAddresses.sol";
|
|
27
|
+
import {JBFundAccessLimits} from "src/JBFundAccessLimits.sol";
|
|
28
|
+
import {JBController} from "src/JBController.sol";
|
|
29
|
+
import {JBTerminalStore} from "src/JBTerminalStore.sol";
|
|
30
|
+
import {JBMultiTerminal} from "src/JBMultiTerminal.sol";
|
|
31
|
+
|
|
32
|
+
import {JBConstants} from "src/libraries/JBConstants.sol";
|
|
33
|
+
import {JBCurrencyIds} from "src/libraries/JBCurrencyIds.sol";
|
|
34
|
+
|
|
35
|
+
contract DeployPeriphery is Script, Sphinx {
|
|
36
|
+
/// @notice tracks the deployment of the core contracts for the chain we are deploying to.
|
|
37
|
+
CoreDeployment core;
|
|
38
|
+
|
|
39
|
+
address private TRUSTED_FORWARDER;
|
|
40
|
+
|
|
41
|
+
bytes32 private DEADLINES_SALT = keccak256("_JBDeadlinesV6_");
|
|
42
|
+
bytes32 private USD_NATIVE_FEED_SALT = keccak256("USD_FEEDV6");
|
|
43
|
+
|
|
44
|
+
/// @notice The nonce that gets used across all chains to sync deployment addresses and allow for new deployments of
|
|
45
|
+
/// the same bytecode.
|
|
46
|
+
uint256 private CORE_DEPLOYMENT_NONCE = 6;
|
|
47
|
+
address private OMNICHAIN_RULESET_OPERATOR = address(0x8f5DED85c40b50d223269C1F922A056E72101590);
|
|
48
|
+
|
|
49
|
+
function configureSphinx() public override {
|
|
50
|
+
sphinxConfig.projectName = "nana-core-v5";
|
|
51
|
+
sphinxConfig.mainnets = ["ethereum", "optimism", "base", "arbitrum"];
|
|
52
|
+
sphinxConfig.testnets = ["ethereum_sepolia", "optimism_sepolia", "base_sepolia", "arbitrum_sepolia"];
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/// @notice Deploys the protocol.
|
|
56
|
+
function run() public {
|
|
57
|
+
// Get the deployment addresses for the nana CORE for this chain.
|
|
58
|
+
// We want to do this outside of the `sphinx` modifier.
|
|
59
|
+
core = CoreDeploymentLib.getDeployment(vm.envOr("NANA_CORE_DEPLOYMENT_PATH", string("deployments/")));
|
|
60
|
+
|
|
61
|
+
// We use the same trusted forwarder as the core deployment.
|
|
62
|
+
TRUSTED_FORWARDER = core.permissions.trustedForwarder();
|
|
63
|
+
|
|
64
|
+
// Deploy the protocol.
|
|
65
|
+
deploy();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function deploy() public sphinx {
|
|
69
|
+
// Deploy the ETH/USD price feed.
|
|
70
|
+
IJBPriceFeed feed;
|
|
71
|
+
|
|
72
|
+
IJBPriceFeed matchingPriceFeed;
|
|
73
|
+
matchingPriceFeed = new JBMatchingPriceFeed();
|
|
74
|
+
|
|
75
|
+
// Same as the chainlink example grace period.
|
|
76
|
+
uint256 L2GracePeriod = 3600 seconds;
|
|
77
|
+
|
|
78
|
+
// NOTE: Feeds come from this url `https://data.chain.link/feeds/ethereum/mainnet/eth-usd`.
|
|
79
|
+
// Sequencer feeds come from this url `https://docs.chain.link/data-feeds/l2-sequencer-feeds`.
|
|
80
|
+
|
|
81
|
+
// Perform the deploy for L1(s).
|
|
82
|
+
if (block.chainid == 1) {
|
|
83
|
+
feed = new JBChainlinkV3PriceFeed{salt: USD_NATIVE_FEED_SALT}(
|
|
84
|
+
AggregatorV3Interface(address(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419)), 3600 seconds
|
|
85
|
+
);
|
|
86
|
+
} else if (block.chainid == 11_155_111) {
|
|
87
|
+
feed = new JBChainlinkV3PriceFeed{salt: USD_NATIVE_FEED_SALT}(
|
|
88
|
+
AggregatorV3Interface(address(0x694AA1769357215DE4FAC081bf1f309aDC325306)), 3600 seconds
|
|
89
|
+
);
|
|
90
|
+
} else {
|
|
91
|
+
// Perform the deploy for L2s
|
|
92
|
+
AggregatorV3Interface source;
|
|
93
|
+
|
|
94
|
+
// Optimism
|
|
95
|
+
if (block.chainid == 10) {
|
|
96
|
+
source = AggregatorV3Interface(0x13e3Ee699D1909E989722E753853AE30b17e08c5);
|
|
97
|
+
feed = new JBChainlinkV3SequencerPriceFeed{salt: USD_NATIVE_FEED_SALT}(
|
|
98
|
+
source,
|
|
99
|
+
3600 seconds,
|
|
100
|
+
AggregatorV2V3Interface(0x371EAD81c9102C9BF4874A9075FFFf170F2Ee389),
|
|
101
|
+
L2GracePeriod
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
// Optimism Sepolia
|
|
105
|
+
else if (block.chainid == 11_155_420) {
|
|
106
|
+
source = AggregatorV3Interface(address(0x61Ec26aA57019C486B10502285c5A3D4A4750AD7));
|
|
107
|
+
feed = new JBChainlinkV3PriceFeed{salt: USD_NATIVE_FEED_SALT}(source, 3600 seconds);
|
|
108
|
+
}
|
|
109
|
+
// Base
|
|
110
|
+
else if (block.chainid == 8453) {
|
|
111
|
+
source = AggregatorV3Interface(0x71041dddad3595F9CEd3DcCFBe3D1F4b0a16Bb70);
|
|
112
|
+
feed = new JBChainlinkV3SequencerPriceFeed{salt: USD_NATIVE_FEED_SALT}(
|
|
113
|
+
source,
|
|
114
|
+
3600 seconds,
|
|
115
|
+
AggregatorV2V3Interface(0xBCF85224fc0756B9Fa45aA7892530B47e10b6433),
|
|
116
|
+
L2GracePeriod
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
// Base Sepolia
|
|
120
|
+
else if (block.chainid == 84_532) {
|
|
121
|
+
source = AggregatorV3Interface(address(0x4aDC67696bA383F43DD60A9e78F2C97Fbbfc7cb1));
|
|
122
|
+
feed = new JBChainlinkV3PriceFeed{salt: USD_NATIVE_FEED_SALT}(source, 3600 seconds);
|
|
123
|
+
}
|
|
124
|
+
// Arbitrum
|
|
125
|
+
else if (block.chainid == 42_161) {
|
|
126
|
+
source = AggregatorV3Interface(0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612);
|
|
127
|
+
feed = new JBChainlinkV3SequencerPriceFeed{salt: USD_NATIVE_FEED_SALT}(
|
|
128
|
+
source,
|
|
129
|
+
3600 seconds,
|
|
130
|
+
AggregatorV2V3Interface(0xFdB631F5EE196F0ed6FAa767959853A9F217697D),
|
|
131
|
+
L2GracePeriod
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
// Arbitrum Sepolia
|
|
135
|
+
else if (block.chainid == 421_614) {
|
|
136
|
+
source = AggregatorV3Interface(address(0xd30e2101a97dcbAeBCBC04F14C3f624E67A35165));
|
|
137
|
+
feed = new JBChainlinkV3PriceFeed{salt: USD_NATIVE_FEED_SALT}(source, 3600 seconds);
|
|
138
|
+
} else {
|
|
139
|
+
revert("Unsupported chain");
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
require(address(feed) != address(0), "Invalid price feed");
|
|
143
|
+
|
|
144
|
+
core.prices
|
|
145
|
+
.addPriceFeedFor({
|
|
146
|
+
projectId: 0,
|
|
147
|
+
pricingCurrency: JBCurrencyIds.USD,
|
|
148
|
+
unitCurrency: uint32(uint160(JBConstants.NATIVE_TOKEN)),
|
|
149
|
+
feed: feed
|
|
150
|
+
});
|
|
151
|
+
|
|
152
|
+
// WARN: We are using the same price feed as the native token for the USD price feed. Which is only valid on
|
|
153
|
+
// chains where Ether is the native asset. We *NEED* to update this when we deploy to a non-ether chain!
|
|
154
|
+
core.prices
|
|
155
|
+
.addPriceFeedFor({
|
|
156
|
+
projectId: 0, pricingCurrency: JBCurrencyIds.USD, unitCurrency: JBCurrencyIds.ETH, feed: feed
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
// If the native asset for this chain is ether, then the conversion from native asset to ether is 1:1.
|
|
160
|
+
// NOTE: We need to refactor this the moment we add a chain where its native token is *NOT* ether.
|
|
161
|
+
// As otherwise prices for the `NATIVE_TOKEN` will be incorrect!
|
|
162
|
+
core.prices
|
|
163
|
+
.addPriceFeedFor({
|
|
164
|
+
projectId: 0,
|
|
165
|
+
pricingCurrency: JBCurrencyIds.ETH,
|
|
166
|
+
unitCurrency: uint32(uint160(JBConstants.NATIVE_TOKEN)),
|
|
167
|
+
feed: matchingPriceFeed
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
// Deploy the USDC/USD price feed.
|
|
171
|
+
_deployUSDCFeed(L2GracePeriod);
|
|
172
|
+
|
|
173
|
+
// Deploy the JBDeadlines
|
|
174
|
+
if (!_isDeployed(DEADLINES_SALT, type(JBDeadline3Hours).creationCode, "")) {
|
|
175
|
+
new JBDeadline3Hours{salt: DEADLINES_SALT}();
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
if (!_isDeployed(DEADLINES_SALT, type(JBDeadline1Day).creationCode, "")) {
|
|
179
|
+
new JBDeadline1Day{salt: DEADLINES_SALT}();
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
if (!_isDeployed(DEADLINES_SALT, type(JBDeadline3Days).creationCode, "")) {
|
|
183
|
+
new JBDeadline3Days{salt: DEADLINES_SALT}();
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
if (!_isDeployed(DEADLINES_SALT, type(JBDeadline7Days).creationCode, "")) {
|
|
187
|
+
new JBDeadline7Days{salt: DEADLINES_SALT}();
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
core.directory
|
|
191
|
+
.setIsAllowedToSetFirstController(
|
|
192
|
+
address(
|
|
193
|
+
new JBController{salt: keccak256(abi.encode(CORE_DEPLOYMENT_NONCE))}({
|
|
194
|
+
directory: core.directory,
|
|
195
|
+
fundAccessLimits: core.fundAccess,
|
|
196
|
+
prices: core.prices,
|
|
197
|
+
permissions: core.permissions,
|
|
198
|
+
projects: core.projects,
|
|
199
|
+
rulesets: core.rulesets,
|
|
200
|
+
splits: core.splits,
|
|
201
|
+
tokens: core.tokens,
|
|
202
|
+
omnichainRulesetOperator: OMNICHAIN_RULESET_OPERATOR,
|
|
203
|
+
trustedForwarder: TRUSTED_FORWARDER
|
|
204
|
+
})
|
|
205
|
+
),
|
|
206
|
+
true
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
function _deployUSDCFeed(uint256 L2GracePeriod) internal {
|
|
211
|
+
IJBPriceFeed usdcFeed;
|
|
212
|
+
address usdc;
|
|
213
|
+
|
|
214
|
+
if (block.chainid == 1) {
|
|
215
|
+
usdc = address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
|
|
216
|
+
usdcFeed = new JBChainlinkV3PriceFeed(
|
|
217
|
+
AggregatorV3Interface(address(0x8fFfFfd4AfB6115b954Bd326cbe7B4BA576818f6)), 86_400 seconds
|
|
218
|
+
);
|
|
219
|
+
} else if (block.chainid == 11_155_111) {
|
|
220
|
+
usdc = address(0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238);
|
|
221
|
+
usdcFeed = new JBChainlinkV3PriceFeed(
|
|
222
|
+
AggregatorV3Interface(address(0xA2F78ab2355fe2f984D808B5CeE7FD0A93D5270E)), 86_400 seconds
|
|
223
|
+
);
|
|
224
|
+
} else if (block.chainid == 10) {
|
|
225
|
+
usdc = address(0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85);
|
|
226
|
+
usdcFeed = new JBChainlinkV3SequencerPriceFeed({
|
|
227
|
+
feed: AggregatorV3Interface(0x16a9FA2FDa030272Ce99B29CF780dFA30361E0f3),
|
|
228
|
+
threshold: 86_400 seconds,
|
|
229
|
+
sequencerFeed: AggregatorV2V3Interface(0x371EAD81c9102C9BF4874A9075FFFf170F2Ee389),
|
|
230
|
+
gracePeriod: L2GracePeriod
|
|
231
|
+
});
|
|
232
|
+
} else if (block.chainid == 11_155_420) {
|
|
233
|
+
usdc = address(0x5fd84259d66Cd46123540766Be93DFE6D43130D7);
|
|
234
|
+
usdcFeed = new JBChainlinkV3PriceFeed(
|
|
235
|
+
AggregatorV3Interface(address(0x6e44e50E3cc14DD16e01C590DC1d7020cb36eD4C)), 86_400 seconds
|
|
236
|
+
);
|
|
237
|
+
} else if (block.chainid == 8453) {
|
|
238
|
+
usdc = address(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913);
|
|
239
|
+
usdcFeed = new JBChainlinkV3SequencerPriceFeed({
|
|
240
|
+
feed: AggregatorV3Interface(0x7e860098F58bBFC8648a4311b374B1D669a2bc6B),
|
|
241
|
+
threshold: 86_400 seconds,
|
|
242
|
+
sequencerFeed: AggregatorV2V3Interface(0xBCF85224fc0756B9Fa45aA7892530B47e10b6433),
|
|
243
|
+
gracePeriod: L2GracePeriod
|
|
244
|
+
});
|
|
245
|
+
} else if (block.chainid == 84_532) {
|
|
246
|
+
usdc = address(0x036CbD53842c5426634e7929541eC2318f3dCF7e);
|
|
247
|
+
usdcFeed = new JBChainlinkV3PriceFeed(
|
|
248
|
+
AggregatorV3Interface(address(0xd30e2101a97dcbAeBCBC04F14C3f624E67A35165)), 86_400 seconds
|
|
249
|
+
);
|
|
250
|
+
} else if (block.chainid == 42_161) {
|
|
251
|
+
usdc = address(0xaf88d065e77c8cC2239327C5EDb3A432268e5831);
|
|
252
|
+
usdcFeed = new JBChainlinkV3SequencerPriceFeed({
|
|
253
|
+
feed: AggregatorV3Interface(0x50834F3163758fcC1Df9973b6e91f0F0F0434aD3),
|
|
254
|
+
threshold: 86_400 seconds,
|
|
255
|
+
sequencerFeed: AggregatorV2V3Interface(0xFdB631F5EE196F0ed6FAa767959853A9F217697D),
|
|
256
|
+
gracePeriod: L2GracePeriod
|
|
257
|
+
});
|
|
258
|
+
} else if (block.chainid == 421_614) {
|
|
259
|
+
usdc = address(0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d);
|
|
260
|
+
usdcFeed = new JBChainlinkV3PriceFeed(
|
|
261
|
+
AggregatorV3Interface(address(0x0153002d20B96532C639313c2d54c3dA09109309)), 86_400 seconds
|
|
262
|
+
);
|
|
263
|
+
} else {
|
|
264
|
+
revert("Unsupported chain for USDC feed");
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
require(usdc.code.length > 0, "Invalid USDC address");
|
|
268
|
+
require(address(usdcFeed) != address(0), "Invalid USDC price feed");
|
|
269
|
+
|
|
270
|
+
core.prices
|
|
271
|
+
.addPriceFeedFor({
|
|
272
|
+
projectId: 0, pricingCurrency: JBCurrencyIds.USD, unitCurrency: uint32(uint160(usdc)), feed: usdcFeed
|
|
273
|
+
});
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function _isDeployed(bytes32 salt, bytes memory creationCode, bytes memory arguments) internal view returns (bool) {
|
|
277
|
+
address _deployedTo = vm.computeCreate2Address({
|
|
278
|
+
salt: salt,
|
|
279
|
+
initCodeHash: keccak256(abi.encodePacked(creationCode, arguments)),
|
|
280
|
+
// Arachnid/deterministic-deployment-proxy address.
|
|
281
|
+
deployer: address(0x4e59b44847b379578588920cA78FbF26c0B4956C)
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
// Return if code is already present at this address.
|
|
285
|
+
return address(_deployedTo).code.length != 0;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity 0.8.23;
|
|
3
|
+
|
|
4
|
+
import {stdJson} from "forge-std/Script.sol";
|
|
5
|
+
import {Vm} from "forge-std/Vm.sol";
|
|
6
|
+
|
|
7
|
+
import {JBPermissions} from "../../src/JBPermissions.sol";
|
|
8
|
+
import {JBProjects} from "../../src/JBProjects.sol";
|
|
9
|
+
import {JBPrices} from "../../src/JBPrices.sol";
|
|
10
|
+
import {JBRulesets} from "../../src/JBRulesets.sol";
|
|
11
|
+
import {JBDirectory} from "../../src/JBDirectory.sol";
|
|
12
|
+
import {JBTokens} from "../../src/JBTokens.sol";
|
|
13
|
+
import {JBSplits} from "../../src/JBSplits.sol";
|
|
14
|
+
import {JBFeelessAddresses} from "../../src/JBFeelessAddresses.sol";
|
|
15
|
+
import {JBFundAccessLimits} from "../../src/JBFundAccessLimits.sol";
|
|
16
|
+
import {JBController} from "../../src/JBController.sol";
|
|
17
|
+
import {JBTerminalStore} from "../../src/JBTerminalStore.sol";
|
|
18
|
+
import {JBMultiTerminal} from "../../src/JBMultiTerminal.sol";
|
|
19
|
+
import {ERC2771Forwarder} from "@openzeppelin/contracts/metatx/ERC2771Forwarder.sol";
|
|
20
|
+
|
|
21
|
+
import {SphinxConstants, NetworkInfo} from "@sphinx-labs/contracts/SphinxConstants.sol";
|
|
22
|
+
|
|
23
|
+
struct CoreDeployment {
|
|
24
|
+
JBPermissions permissions;
|
|
25
|
+
JBProjects projects;
|
|
26
|
+
JBDirectory directory;
|
|
27
|
+
JBSplits splits;
|
|
28
|
+
JBRulesets rulesets;
|
|
29
|
+
JBController controller;
|
|
30
|
+
JBMultiTerminal terminal;
|
|
31
|
+
JBTerminalStore terminalStore;
|
|
32
|
+
JBPrices prices;
|
|
33
|
+
JBFeelessAddresses feeless;
|
|
34
|
+
JBFundAccessLimits fundAccess;
|
|
35
|
+
JBTokens tokens;
|
|
36
|
+
address trustedForwarder;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
library CoreDeploymentLib {
|
|
40
|
+
// Cheat code address, 0x7109709ECfa91a80626fF3989D68f67F5b1DD12D.
|
|
41
|
+
address internal constant VM_ADDRESS = address(uint160(uint256(keccak256("hevm cheat code"))));
|
|
42
|
+
Vm internal constant vm = Vm(VM_ADDRESS);
|
|
43
|
+
string constant PROJECT_NAME = "nana-core-v5";
|
|
44
|
+
|
|
45
|
+
function getDeployment(string memory path) internal returns (CoreDeployment memory deployment) {
|
|
46
|
+
// get chainId for which we need to get the deployment.
|
|
47
|
+
uint256 chainId = block.chainid;
|
|
48
|
+
|
|
49
|
+
// Deploy to get the constants.
|
|
50
|
+
// TODO: get constants without deploy.
|
|
51
|
+
SphinxConstants sphinxConstants = new SphinxConstants();
|
|
52
|
+
NetworkInfo[] memory networks = sphinxConstants.getNetworkInfoArray();
|
|
53
|
+
|
|
54
|
+
for (uint256 _i; _i < networks.length; _i++) {
|
|
55
|
+
if (networks[_i].chainId == chainId) {
|
|
56
|
+
return getDeployment(path, networks[_i].name);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
revert("ChainID is not (currently) supported by Sphinx.");
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function getDeployment(
|
|
64
|
+
string memory path,
|
|
65
|
+
string memory network_name
|
|
66
|
+
)
|
|
67
|
+
internal
|
|
68
|
+
view
|
|
69
|
+
returns (CoreDeployment memory deployment)
|
|
70
|
+
{
|
|
71
|
+
deployment.permissions = JBPermissions(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBPermissions"));
|
|
72
|
+
|
|
73
|
+
deployment.projects = JBProjects(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBProjects"));
|
|
74
|
+
|
|
75
|
+
deployment.directory = JBDirectory(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBDirectory"));
|
|
76
|
+
|
|
77
|
+
deployment.splits = JBSplits(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBSplits"));
|
|
78
|
+
|
|
79
|
+
deployment.rulesets = JBRulesets(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBRulesets"));
|
|
80
|
+
|
|
81
|
+
deployment.controller = JBController(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBController"));
|
|
82
|
+
|
|
83
|
+
deployment.terminal =
|
|
84
|
+
JBMultiTerminal(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBMultiTerminal"));
|
|
85
|
+
|
|
86
|
+
deployment.terminalStore =
|
|
87
|
+
JBTerminalStore(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBTerminalStore"));
|
|
88
|
+
|
|
89
|
+
deployment.prices = JBPrices(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBPrices"));
|
|
90
|
+
|
|
91
|
+
deployment.feeless =
|
|
92
|
+
JBFeelessAddresses(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBFeelessAddresses"));
|
|
93
|
+
|
|
94
|
+
deployment.fundAccess =
|
|
95
|
+
JBFundAccessLimits(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBFundAccessLimits"));
|
|
96
|
+
|
|
97
|
+
deployment.tokens = JBTokens(_getDeploymentAddress(path, PROJECT_NAME, network_name, "JBTokens"));
|
|
98
|
+
|
|
99
|
+
deployment.trustedForwarder = _getDeploymentAddress(path, PROJECT_NAME, network_name, "ERC2771Forwarder");
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/// @notice Get the address of a contract that was deployed by the Deploy script.
|
|
103
|
+
/// @dev Reverts if the contract was not found.
|
|
104
|
+
/// @param path The path to the deployment file.
|
|
105
|
+
/// @param contractName The name of the contract to get the address of.
|
|
106
|
+
/// @return The address of the contract.
|
|
107
|
+
function _getDeploymentAddress(
|
|
108
|
+
string memory path,
|
|
109
|
+
string memory project_name,
|
|
110
|
+
string memory network_name,
|
|
111
|
+
string memory contractName
|
|
112
|
+
)
|
|
113
|
+
internal
|
|
114
|
+
view
|
|
115
|
+
returns (address)
|
|
116
|
+
{
|
|
117
|
+
string memory deploymentJson =
|
|
118
|
+
vm.readFile(string.concat(path, project_name, "/", network_name, "/", contractName, ".json"));
|
|
119
|
+
return stdJson.readAddress(deploymentJson, ".address");
|
|
120
|
+
}
|
|
121
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"detectors_to_exclude": "timestamp,uninitialized-local,naming-convention,solc-version,shadowing-local",
|
|
3
|
+
"exclude_informational": true,
|
|
4
|
+
"exclude_low": false,
|
|
5
|
+
"exclude_medium": false,
|
|
6
|
+
"exclude_high": false,
|
|
7
|
+
"disable_color": false,
|
|
8
|
+
"filter_paths": "(mocks/|test/|node_modules/|lib/)",
|
|
9
|
+
"legacy_ast": false
|
|
10
|
+
}
|