├── .env.sample ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── FEATURE_REQUEST.yml │ ├── config.yml │ └── feature_request.md └── workflows │ └── forge-test.yml ├── .gitignore ├── .gitmodules ├── .openzeppelin ├── arbitrum-one.json ├── avalanche-fuji.json ├── avalanche.json ├── celo-alfajores.json ├── celo.json ├── goerli.json ├── kovan.json ├── mainnet.json ├── optimism-goerli.json ├── optimism.json ├── polygon-mumbai.json ├── polygon.json ├── sepolia.json ├── unknown-100.json ├── unknown-1088.json ├── unknown-11155420.json ├── unknown-1329.json ├── unknown-250.json ├── unknown-295.json ├── unknown-296.json ├── unknown-314.json ├── unknown-314159.json ├── unknown-4002.json ├── unknown-4201.json ├── unknown-421614.json ├── unknown-534352.json ├── unknown-713715.json ├── unknown-8453.json └── unknown-84531.json ├── .pre-commit-config.yaml ├── .upgradable ├── zkSync-era.json └── zkSync-testnet-sepolia.json ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── DEV.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── audit-resources.md ├── bun.lockb ├── contracts ├── README.md ├── core │ ├── Allo.md │ ├── Allo.sol │ ├── Anchor.md │ ├── Anchor.sol │ ├── README.md │ ├── Registry.md │ ├── Registry.sol │ ├── interfaces │ │ ├── IAllo.sol │ │ ├── IRegistry.sol │ │ └── IStrategy.sol │ └── libraries │ │ ├── Clone.sol │ │ ├── Errors.sol │ │ ├── Metadata.sol │ │ ├── Native.sol │ │ └── Transfer.sol ├── factories │ ├── ContractFactory.sol │ ├── DGLFactory.sol │ ├── DVMDTFactory.sol │ └── README.md ├── migration │ ├── AlloV1ToV2ProfileMigration.sol │ └── BulkProfileMigration.sol └── strategies │ ├── BaseStrategy.sol │ ├── README.md │ ├── SpecTemplate.md │ ├── _poc │ ├── direct-grants-simple │ │ ├── DirectGrantsSimpleStrategy.sol │ │ └── README.md │ ├── donation-voting-custom-registry │ │ ├── DonationVotingCustomRegistryStrategy.sol │ │ ├── SimpleProjectRegistry.sol │ │ └── Spec.md │ ├── donation-voting │ │ ├── DonationVotingStrategy.sol │ │ └── Spec.md │ ├── easy-rf │ │ └── EasyRetroFundingStrategy.sol │ ├── hedgey │ │ └── HedgeyRFPCommitteeStrategy.sol │ ├── micro-grants │ │ ├── MicroGrantsBaseStrategy.sol │ │ ├── MicroGrantsGovStrategy.sol │ │ ├── MicroGrantsHatsStrategy.sol │ │ ├── MicroGrantsStrategy.sol │ │ ├── README.md │ │ └── interfaces │ │ │ └── UniversalGov.sol │ ├── proportional-payout │ │ ├── ProportionalPayoutStrategy.sol │ │ └── Spec.md │ ├── qv-governance │ │ ├── QVGovernanceERC20Votes.sol │ │ └── Spec.md │ ├── qv-hackathon │ │ ├── HackathonQVStrategy.sol │ │ ├── SchemaResolver.sol │ │ └── Spec.md │ ├── qv-impact-stream │ │ ├── QVImpactStreamStrategy.sol │ │ └── README.md │ ├── qv-nft-tiered │ │ ├── QVNftTieredStrategy.sol │ │ └── Spec.md │ ├── sablier-v2 │ │ ├── LockupDynamicStrategy.sol │ │ ├── LockupLinearStrategy.sol │ │ └── README.md │ ├── sqf-superfluid │ │ ├── RecipientSuperApp.sol │ │ ├── RecipientSuperAppFactory.sol │ │ ├── SQFSuperFluidStrategy.sol │ │ └── lib │ │ │ └── IGitcoinPassportDecoder.sol │ └── wrapped-voting-nftmint │ │ ├── NFT.sol │ │ ├── NFTFactory.sol │ │ ├── Spec.md │ │ └── WrappedVotingNftMintStrategy.sol │ ├── direct-allocation │ └── DirectAllocation.sol │ ├── direct-grants-lite │ ├── DirectGrantsLite.sol │ ├── README.md │ └── direct-grants-lite-audit-report-final.pdf │ ├── donation-voting-merkle-base │ ├── DonationVotingMerkleDistributionBaseStrategy.sol │ └── IDAI.sol │ ├── donation-voting-merkle-distribution-direct-transfer │ ├── DonationVotingMerkleDistributionDirectTransferStrategy.sol │ └── README.md │ ├── donation-voting-merkle-distribution-vault │ ├── DonationVotingMerkleDistributionVaultStrategy.sol │ └── README.md │ ├── easy-rpgf │ ├── EasyRPGFStrategy.sol │ └── easy-rpgf-audit-report-final.pdf │ ├── ltip-hedgey-governor │ ├── LTIPHedgeyGovernorStrategy.sol │ └── README.md │ ├── ltip-hedgey │ ├── LTIPHedgeyStrategy.sol │ └── README.md │ ├── ltip-simple │ ├── LTIPSimpleStrategy.sol │ └── README.md │ ├── qv-base │ ├── QVBaseStrategy.sol │ └── README.md │ ├── qv-simple │ ├── QVSimpleStrategy.sol │ └── README.md │ ├── rfp-committee │ ├── README.md │ └── RFPCommitteeStrategy.sol │ └── rfp-simple │ ├── README.md │ └── RFPSimpleStrategy.sol ├── deploy ├── README.md └── zksync │ ├── deployEraAllo.ts │ ├── deployEraContractFactory.ts │ ├── deployEraRegistry.ts │ ├── factory │ ├── deployDGLFactory.ts │ ├── deployDVMDTFactory.ts │ └── utils.ts │ └── strategies │ ├── deployEraDirectGrants.ts │ ├── deployEraDirectGrantsLite.ts │ ├── deployEraDonationVotingMerkleDistributionDirect.ts │ └── deployEraStrategies.ts ├── deployments-zk ├── zkSyncMainnet │ ├── .chainId │ └── contracts │ │ ├── chain │ │ └── era │ │ │ ├── DGLFactory.sol │ │ │ └── DGLFactory.json │ │ │ └── DVMDTFactory.sol │ │ │ └── DVMDTFactory.json │ │ ├── factories │ │ ├── DGLFactory.sol │ │ │ └── DGLFactory.json │ │ └── DVMDTFactory.sol │ │ │ └── DVMDTFactory.json │ │ └── strategies │ │ ├── _poc │ │ └── direct-grants-simple │ │ │ └── DirectGrantsSimpleStrategy.sol │ │ │ └── DirectGrantsSimpleStrategy.json │ │ ├── direct-grants-lite │ │ └── DirectGrantsLite.sol │ │ │ └── DirectGrantsLiteStrategy.json │ │ └── donation-voting-merkle-distribution-direct-transfer │ │ └── DonationVotingMerkleDistributionDirectTransferStrategy.sol │ │ └── DonationVotingMerkleDistributionDirectTransferStrategy.json └── zkSyncTestnet │ ├── .chainId │ └── contracts │ ├── chain │ └── era │ │ ├── DGLFactory.sol │ │ └── DGLFactory.json │ │ └── DVMDTFactory.sol │ │ └── DVMDTFactory.json │ ├── factories │ ├── DGLFactory.sol │ │ └── DGLFactory.json │ └── DVMDTFactory.sol │ │ └── DVMDTFactory.json │ └── strategies │ ├── _poc │ └── direct-grants-simple │ │ └── DirectGrantsSimpleStrategy.sol │ │ └── DirectGrantsSimpleStrategy.json │ ├── direct-grants-lite │ └── DirectGrantsLite.sol │ │ └── DirectGrantsLiteStrategy.json │ └── donation-voting-merkle-distribution-direct-transfer │ └── DonationVotingMerkleDistributionDirectTransferStrategy.sol │ └── DonationVotingMerkleDistributionDirectTransferStrategy.json ├── docs ├── DEPLOY_CHECKLIST.md └── DEPLOY_STEPS.md ├── era.hardhat.config.ts ├── foundry.toml ├── funding.json ├── hardhat.config.ts ├── package.json ├── remappings.era.txt ├── remappings.evm.txt ├── remappings.txt ├── reports ├── 2023.21.09_-_Final_-_Allo_V2_Audit_Report.pdf ├── deployment-logs │ ├── core │ │ ├── deploy.log │ │ ├── deployAllo │ │ │ ├── arbitrum-goerli │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── arbitrum-sepolia │ │ │ │ └── 20231214_143055 │ │ │ │ │ └── deploy-20231214_143055.log │ │ │ ├── avalanche │ │ │ │ └── 20240318_151307 │ │ │ │ │ └── deploy-20240318_151307.log │ │ │ ├── base-testnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── base │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── celo-testnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── fantom │ │ │ │ └── 20240318_160751 │ │ │ │ │ └── deploy-20240318_160751.log │ │ │ ├── filecoin-calibration │ │ │ │ ├── 20240412_195124 │ │ │ │ │ └── deploy-20240412_195124.log │ │ │ │ └── 20240412_203640 │ │ │ │ │ └── deploy-20240412_203640.log │ │ │ ├── filecoin-mainnet │ │ │ │ ├── 20240417_222740 │ │ │ │ │ └── deploy-20240417_222740.log │ │ │ │ ├── 20240417_225106 │ │ │ │ │ └── deploy-20240417_225106.log │ │ │ │ └── 20240417_225457 │ │ │ │ │ └── deploy-20240417_225457.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240318_160751 │ │ │ │ │ └── deploy-20240318_160751.log │ │ │ ├── fuji │ │ │ │ └── 20240318_155824 │ │ │ │ │ └── deploy-20240318_155824.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_140957 │ │ │ │ │ └── deploy-20240912_140957.log │ │ │ ├── goerli │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── hedera-mainnet │ │ │ │ └── 20250210_153916 │ │ │ │ │ └── deploy-20250210_153916.log │ │ │ ├── hedera-testnet │ │ │ │ └── 20250207_182922 │ │ │ │ │ └── deploy-20250207_182922.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240419_172024 │ │ │ │ │ └── deploy-20240419_172024.log │ │ │ ├── lukso-testnet │ │ │ │ ├── 20240412_092516 │ │ │ │ │ └── deploy-20240412_092516.log │ │ │ │ └── 20240412_093030 │ │ │ │ │ └── deploy-20240412_093030.log │ │ │ ├── mainnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── metisAndromeda │ │ │ │ └── 20240729_143733 │ │ │ │ │ └── deploy-20240729_143733.log │ │ │ ├── mumbai │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── optimism-goerli │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── optimism-mainnet │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240122_202520 │ │ │ │ │ └── deploy-20240122_202520.log │ │ │ ├── polygon │ │ │ │ └── 20231102_214941 │ │ │ │ │ └── deploy-20231102_214941.log │ │ │ ├── scroll │ │ │ │ └── 20240318_154246 │ │ │ │ │ └── deploy-20240318_154246.log │ │ │ ├── sei-devnet │ │ │ │ ├── 20240410_085810 │ │ │ │ │ └── deploy-20240410_085810.log │ │ │ │ └── 20240410_090804 │ │ │ │ │ └── deploy-20240410_090804.log │ │ │ ├── sei-mainnet │ │ │ │ └── 20240528_184038 │ │ │ │ │ └── deploy-20240528_184038.log │ │ │ └── sepolia │ │ │ │ └── 20231102_214941 │ │ │ │ └── deploy-20231102_214941.log │ │ ├── deployContractFactory │ │ │ ├── arbitrum-goerli │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── arbitrum-sepolia │ │ │ │ └── 20231214_142854 │ │ │ │ │ └── deploy-20231214_142854.log │ │ │ ├── avalanche │ │ │ │ └── 20240318_151058 │ │ │ │ │ └── deploy-20240318_151058.log │ │ │ ├── base-testnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── base │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── celo-testnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── fantom │ │ │ │ └── 20240318_160420 │ │ │ │ │ └── deploy-20240318_160420.log │ │ │ ├── filecoin-calibration │ │ │ │ └── 20240412_233154 │ │ │ │ │ └── deploy-20240412_233154.log │ │ │ ├── filecoin-mainnet │ │ │ │ └── 20240417_225711 │ │ │ │ │ └── deploy-20240417_225711.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240318_160420 │ │ │ │ │ └── deploy-20240318_160420.log │ │ │ ├── fuji │ │ │ │ └── 20240318_155704 │ │ │ │ │ └── deploy-20240318_155704.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_140957 │ │ │ │ │ └── deploy-20240912_140957.log │ │ │ ├── goerli │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── hedera-mainnet │ │ │ │ └── 20250210_153803 │ │ │ │ │ └── deploy-20250210_153803.log │ │ │ ├── hedera-testnet │ │ │ │ ├── 20250207_182818 │ │ │ │ │ └── deploy-20250207_182818.log │ │ │ │ └── 20250210_153356 │ │ │ │ │ └── deploy-20250210_153356.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240419_172348 │ │ │ │ │ └── deploy-20240419_172348.log │ │ │ ├── lukso-testnet │ │ │ │ └── 20240412_093209 │ │ │ │ │ └── deploy-20240412_093209.log │ │ │ ├── mainnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── metisAndromeda │ │ │ │ └── 20240729_143511 │ │ │ │ │ └── deploy-20240729_143511.log │ │ │ ├── mumbai │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── optimism-goerli │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── optimism-mainnet │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240122_202321 │ │ │ │ │ └── deploy-20240122_202321.log │ │ │ ├── polygon │ │ │ │ └── 20231102_212901 │ │ │ │ │ └── deploy-20231102_212901.log │ │ │ ├── scroll │ │ │ │ └── 20240318_153836 │ │ │ │ │ └── deploy-20240318_153836.log │ │ │ ├── sei-devnet │ │ │ │ └── 20240409_141904 │ │ │ │ │ └── deploy-20240409_141904.log │ │ │ ├── sei-mainnet │ │ │ │ └── 20240528_185509 │ │ │ │ │ └── deploy-20240528_185509.log │ │ │ └── sepolia │ │ │ │ └── 20231102_212901 │ │ │ │ └── deploy-20231102_212901.log │ │ ├── deployRegistry │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20231102_212545 │ │ │ │ │ └── deploy-20231102_212545.log │ │ │ ├── arbitrum-sepolia │ │ │ │ └── 20231214_142629 │ │ │ │ │ └── deploy-20231214_142629.log │ │ │ ├── avalanche │ │ │ │ └── 20240318_150734 │ │ │ │ │ └── deploy-20240318_150734.log │ │ │ ├── fantom-testnet │ │ │ │ └── 20240318_155831 │ │ │ │ │ └── deploy-20240318_155831.log │ │ │ ├── fantom │ │ │ │ └── 20240318_155831 │ │ │ │ │ └── deploy-20240318_155831.log │ │ │ ├── filecoin-calibration │ │ │ │ └── 20240412_102206 │ │ │ │ │ └── deploy-20240412_102206.log │ │ │ ├── filecoin-mainnet │ │ │ │ └── 20240417_222259 │ │ │ │ │ └── deploy-20240417_222259.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240318_160159 │ │ │ │ │ └── deploy-20240318_160159.log │ │ │ ├── fuji │ │ │ │ ├── 20240318_145600 │ │ │ │ │ └── deploy-20240318_145600.log │ │ │ │ ├── 20240318_150458 │ │ │ │ │ └── deploy-20240318_150458.log │ │ │ │ ├── 20240318_150532 │ │ │ │ │ └── deploy-20240318_150532.log │ │ │ │ ├── 20240318_150945 │ │ │ │ │ └── deploy-20240318_150945.log │ │ │ │ ├── 20240318_150953 │ │ │ │ │ └── deploy-20240318_150953.log │ │ │ │ ├── 20240318_152249 │ │ │ │ │ └── deploy-20240318_152249.log │ │ │ │ ├── 20240318_153412 │ │ │ │ │ └── deploy-20240318_153412.log │ │ │ │ └── 20240318_155235 │ │ │ │ │ └── deploy-20240318_155235.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_140627 │ │ │ │ │ └── deploy-20240912_140627.log │ │ │ ├── hedera-mainnet │ │ │ │ ├── 20250210_152758 │ │ │ │ │ └── deploy-20250210_152758.log │ │ │ │ └── 20250210_153533 │ │ │ │ │ └── deploy-20250210_153533.log │ │ │ ├── hedera-testnet │ │ │ │ ├── 20250207_152703 │ │ │ │ │ └── deploy-20250207_152703.log │ │ │ │ ├── 20250207_152933 │ │ │ │ │ └── deploy-20250207_152933.log │ │ │ │ ├── 20250210_152934 │ │ │ │ │ └── deploy-20250210_152934.log │ │ │ │ └── 20250210_153238 │ │ │ │ │ └── deploy-20250210_153238.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240419_171518 │ │ │ │ │ └── deploy-20240419_171518.log │ │ │ ├── lukso-testnet │ │ │ │ └── 20240412_092239 │ │ │ │ │ └── deploy-20240412_092239.log │ │ │ ├── metis │ │ │ │ ├── 20240729_142656 │ │ │ │ │ └── deploy-20240729_142656.log │ │ │ │ └── 20240729_143105 │ │ │ │ │ └── deploy-20240729_143105.log │ │ │ ├── metisAndromeda │ │ │ │ ├── 20240729_143120 │ │ │ │ │ └── deploy-20240729_143120.log │ │ │ │ └── 20240729_143157 │ │ │ │ │ └── deploy-20240729_143157.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240122_201724 │ │ │ │ │ └── deploy-20240122_201724.log │ │ │ ├── scroll │ │ │ │ ├── 20240318_153529 │ │ │ │ │ └── deploy-20240318_153529.log │ │ │ │ └── 20240318_153711 │ │ │ │ │ └── deploy-20240318_153711.log │ │ │ ├── sei-devnet │ │ │ │ ├── 20240409_142035 │ │ │ │ │ └── deploy-20240409_142035.log │ │ │ │ ├── 20240409_142132 │ │ │ │ │ └── deploy-20240409_142132.log │ │ │ │ └── 20240410_084934 │ │ │ │ │ └── deploy-20240410_084934.log │ │ │ ├── sei-mainnet │ │ │ │ ├── 20240528_183234 │ │ │ │ │ └── deploy-20240528_183234.log │ │ │ │ ├── 20240528_183513 │ │ │ │ │ └── deploy-20240528_183513.log │ │ │ │ ├── 20240528_183701 │ │ │ │ │ └── deploy-20240528_183701.log │ │ │ │ └── 20240528_183752 │ │ │ │ │ └── deploy-20240528_183752.log │ │ │ ├── sepolia │ │ │ │ ├── 20240318_151332 │ │ │ │ │ └── deploy-20240318_151332.log │ │ │ │ ├── 20240318_151343 │ │ │ │ │ └── deploy-20240318_151343.log │ │ │ │ ├── 20240318_151506 │ │ │ │ │ └── deploy-20240318_151506.log │ │ │ │ ├── 20240318_151525 │ │ │ │ │ └── deploy-20240318_151525.log │ │ │ │ └── 20240318_152028 │ │ │ │ │ └── deploy-20240318_152028.log │ │ │ └── zkSyncMainnet │ │ │ │ └── 20240410_191531 │ │ │ │ └── deploy-20240410_191531.log │ │ └── transferProxyAdminOwnership │ │ │ ├── arbitrum-goerli │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── arbitrum-mainnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── arbitrum-sepolia │ │ │ └── 20231214_143634 │ │ │ │ └── deploy-20231214_143634.log │ │ │ ├── base-testnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── base │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── celo-mainnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── celo-testnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── goerli │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── mainnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── mumbai │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── optimism-goerli │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── optimism-mainnet │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ ├── optimism-sepolia │ │ │ └── 20240122_202757 │ │ │ │ └── deploy-20240122_202757.log │ │ │ ├── polygon │ │ │ └── 20231102_221158 │ │ │ │ └── deploy-20231102_221158.log │ │ │ └── sepolia │ │ │ └── 20231102_221158 │ │ │ └── deploy-20231102_221158.log │ ├── strategies │ │ ├── deployDirectAllocation │ │ │ ├── arbitrum-mainnet │ │ │ │ ├── 20240724_114227 │ │ │ │ │ └── deploy-20240724_114227.log │ │ │ │ └── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ ├── avalanche │ │ │ │ ├── 20240724_152522 │ │ │ │ │ └── deploy-20240724_152522.log │ │ │ │ └── 20240724_152726 │ │ │ │ │ └── deploy-20240724_152726.log │ │ │ ├── base │ │ │ │ └── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ ├── fantom │ │ │ │ ├── 20240724_152522 │ │ │ │ │ └── deploy-20240724_152522.log │ │ │ │ └── 20240724_152726 │ │ │ │ │ └── deploy-20240724_152726.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_141426 │ │ │ │ │ └── deploy-20240912_141426.log │ │ │ ├── hedera-mainnet │ │ │ │ └── 20250210_154806 │ │ │ │ │ └── deploy-20250210_154806.log │ │ │ ├── hedera-testnet │ │ │ │ └── 20250207_183231 │ │ │ │ │ └── deploy-20250207_183231.log │ │ │ ├── lukso-mainnet │ │ │ │ ├── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ │ ├── 20240724_123325 │ │ │ │ │ └── deploy-20240724_123325.log │ │ │ │ └── 20240724_123702 │ │ │ │ │ └── deploy-20240724_123702.log │ │ │ ├── mainnet │ │ │ │ ├── 20240724_114227 │ │ │ │ │ └── deploy-20240724_114227.log │ │ │ │ ├── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ │ ├── 20240724_123325 │ │ │ │ │ └── deploy-20240724_123325.log │ │ │ │ ├── 20240724_123702 │ │ │ │ │ └── deploy-20240724_123702.log │ │ │ │ └── 20240724_151544 │ │ │ │ │ └── deploy-20240724_151544.log │ │ │ ├── metisAndromeda │ │ │ │ └── 20240729_144147 │ │ │ │ │ └── deploy-20240729_144147.log │ │ │ ├── optimism-mainnet │ │ │ │ ├── 20240724_114227 │ │ │ │ │ └── deploy-20240724_114227.log │ │ │ │ └── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ ├── scroll │ │ │ │ ├── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ │ ├── 20240724_123325 │ │ │ │ │ └── deploy-20240724_123325.log │ │ │ │ └── 20240724_123702 │ │ │ │ │ └── deploy-20240724_123702.log │ │ │ ├── sei-mainnet │ │ │ │ ├── 20240724_115121 │ │ │ │ │ └── deploy-20240724_115121.log │ │ │ │ ├── 20240724_123325 │ │ │ │ │ └── deploy-20240724_123325.log │ │ │ │ └── 20240724_123702 │ │ │ │ │ └── deploy-20240724_123702.log │ │ │ └── sepolia │ │ │ │ ├── 20240711_092006 │ │ │ │ └── deploy-20240711_092006.log │ │ │ │ ├── 20240716_101849 │ │ │ │ └── deploy-20240716_101849.log │ │ │ │ ├── 20240716_102132 │ │ │ │ └── deploy-20240716_102132.log │ │ │ │ └── 20240716_102240 │ │ │ │ └── deploy-20240716_102240.log │ │ ├── deployDirectGrants │ │ │ ├── arbitrum-goerli │ │ │ │ ├── 20240215_130431 │ │ │ │ │ └── deploy-20240215_130431.log │ │ │ │ └── 20240215_130734 │ │ │ │ │ └── deploy-20240215_130734.log │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20240318_123606 │ │ │ │ │ └── deploy-20240318_123606.log │ │ │ ├── arbitrum-sepolia │ │ │ │ ├── 20240215_131034 │ │ │ │ │ └── deploy-20240215_131034.log │ │ │ │ └── 20240318_162700 │ │ │ │ │ └── deploy-20240318_162700.log │ │ │ ├── avalanche │ │ │ │ └── 20240318_151751 │ │ │ │ │ └── deploy-20240318_151751.log │ │ │ ├── base-testnet │ │ │ │ └── 20240215_130752 │ │ │ │ │ └── deploy-20240215_130752.log │ │ │ ├── base │ │ │ │ └── 20240318_123606 │ │ │ │ │ └── deploy-20240318_123606.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20240318_123606 │ │ │ │ │ └── deploy-20240318_123606.log │ │ │ ├── celo-testnet │ │ │ │ ├── 20240215_130752 │ │ │ │ │ └── deploy-20240215_130752.log │ │ │ │ └── 20240318_163036 │ │ │ │ │ └── deploy-20240318_163036.log │ │ │ ├── fantom │ │ │ │ └── 20240318_161457 │ │ │ │ │ └── deploy-20240318_161457.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240318_161457 │ │ │ │ │ └── deploy-20240318_161457.log │ │ │ ├── fuji │ │ │ │ └── 20240318_160858 │ │ │ │ │ └── deploy-20240318_160858.log │ │ │ ├── goerli │ │ │ │ └── 20240215_125903 │ │ │ │ │ └── deploy-20240215_125903.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240419_172709 │ │ │ │ │ └── deploy-20240419_172709.log │ │ │ ├── lukso-testnet │ │ │ │ └── 20240412_093347 │ │ │ │ │ └── deploy-20240412_093347.log │ │ │ ├── mainnet │ │ │ │ └── 20240319_125308 │ │ │ │ │ └── deploy-20240319_125308.log │ │ │ ├── mumbai │ │ │ │ ├── 20240215_125903 │ │ │ │ │ └── deploy-20240215_125903.log │ │ │ │ ├── 20240226_142340 │ │ │ │ │ └── deploy-20240226_142340.log │ │ │ │ └── 20240318_160858 │ │ │ │ │ └── deploy-20240318_160858.log │ │ │ ├── optimism-goerli │ │ │ │ └── 20240215_130431 │ │ │ │ │ └── deploy-20240215_130431.log │ │ │ ├── optimism-mainnet │ │ │ │ └── 20240318_123606 │ │ │ │ │ └── deploy-20240318_123606.log │ │ │ ├── optimism-sepolia │ │ │ │ ├── 20240215_131034 │ │ │ │ │ └── deploy-20240215_131034.log │ │ │ │ └── 20240318_162700 │ │ │ │ │ └── deploy-20240318_162700.log │ │ │ ├── polygon │ │ │ │ └── 20240318_123606 │ │ │ │ │ └── deploy-20240318_123606.log │ │ │ ├── scroll │ │ │ │ ├── 20240318_155014 │ │ │ │ │ └── deploy-20240318_155014.log │ │ │ │ ├── 20240318_155137 │ │ │ │ │ └── deploy-20240318_155137.log │ │ │ │ └── 20240318_163855 │ │ │ │ │ └── deploy-20240318_163855.log │ │ │ ├── sei-devnet │ │ │ │ ├── 20240410_091414 │ │ │ │ │ └── deploy-20240410_091414.log │ │ │ │ ├── 20240410_173154 │ │ │ │ │ └── deploy-20240410_173154.log │ │ │ │ ├── 20240410_180752 │ │ │ │ │ └── deploy-20240410_180752.log │ │ │ │ └── 20240410_181512 │ │ │ │ │ └── deploy-20240410_181512.log │ │ │ └── sepolia │ │ │ │ ├── 20240215_130431 │ │ │ │ └── deploy-20240215_130431.log │ │ │ │ └── 20240318_162533 │ │ │ │ └── deploy-20240318_162533.log │ │ ├── deployDirectGrantsLite │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20240513_112450 │ │ │ │ │ └── deploy-20240513_112450.log │ │ │ ├── arbitrum-sepolia │ │ │ │ ├── 20240513_111032 │ │ │ │ │ └── deploy-20240513_111032.log │ │ │ │ ├── 20240513_111458 │ │ │ │ │ └── deploy-20240513_111458.log │ │ │ │ └── 20240513_120058 │ │ │ │ │ └── deploy-20240513_120058.log │ │ │ ├── avalanche │ │ │ │ └── 20240513_124742 │ │ │ │ │ └── deploy-20240513_124742.log │ │ │ ├── base-testnet │ │ │ │ ├── 20240513_110727 │ │ │ │ │ └── deploy-20240513_110727.log │ │ │ │ └── 20240513_120839 │ │ │ │ │ └── deploy-20240513_120839.log │ │ │ ├── base │ │ │ │ └── 20240513_112848 │ │ │ │ │ └── deploy-20240513_112848.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20240513_112103 │ │ │ │ │ └── deploy-20240513_112103.log │ │ │ ├── celo-testnet │ │ │ │ └── 20240513_110727 │ │ │ │ │ └── deploy-20240513_110727.log │ │ │ ├── fantom │ │ │ │ └── 20240513_114525 │ │ │ │ │ └── deploy-20240513_114525.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240513_114327 │ │ │ │ │ └── deploy-20240513_114327.log │ │ │ ├── fuji │ │ │ │ └── 20240513_110346 │ │ │ │ │ └── deploy-20240513_110346.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_141426 │ │ │ │ │ └── deploy-20240912_141426.log │ │ │ ├── hedera-mainnet │ │ │ │ └── 20250210_154612 │ │ │ │ │ └── deploy-20250210_154612.log │ │ │ ├── hedera-testnet │ │ │ │ └── 20250207_183113 │ │ │ │ │ └── deploy-20250207_183113.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240513_115320 │ │ │ │ │ └── deploy-20240513_115320.log │ │ │ ├── lukso-testnet │ │ │ │ └── 20240513_115013 │ │ │ │ │ └── deploy-20240513_115013.log │ │ │ ├── mainnet │ │ │ │ └── 20240513_113935 │ │ │ │ │ └── deploy-20240513_113935.log │ │ │ ├── metisAndromeda │ │ │ │ └── 20240729_144147 │ │ │ │ │ └── deploy-20240729_144147.log │ │ │ ├── optimism-mainnet │ │ │ │ └── 20240513_111848 │ │ │ │ │ └── deploy-20240513_111848.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240513_120251 │ │ │ │ │ └── deploy-20240513_120251.log │ │ │ ├── scroll │ │ │ │ └── 20240513_114142 │ │ │ │ │ └── deploy-20240513_114142.log │ │ │ ├── sei-devnet │ │ │ │ └── 20240513_114748 │ │ │ │ │ └── deploy-20240513_114748.log │ │ │ ├── sei-mainnet │ │ │ │ ├── 20240528_190439 │ │ │ │ │ └── deploy-20240528_190439.log │ │ │ │ └── 20240529_144259 │ │ │ │ │ └── deploy-20240529_144259.log │ │ │ ├── sepolia │ │ │ │ ├── 20240419_162255 │ │ │ │ │ └── deploy-20240419_162255.log │ │ │ │ └── 20240513_105011 │ │ │ │ │ └── deploy-20240513_105011.log │ │ │ └── zkSyncTestnet │ │ │ │ └── 20240513_125038 │ │ │ │ └── deploy-20240513_125038.log │ │ ├── deployDonationVotingMerkleDistributionDirect │ │ │ ├── arbitrum-goerli │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_085719 │ │ │ │ │ └── deploy-20240209_085719.log │ │ │ │ └── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ ├── arbitrum-mainnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_140106 │ │ │ │ │ └── deploy-20240209_140106.log │ │ │ │ └── 20240318_122828 │ │ │ │ │ └── deploy-20240318_122828.log │ │ │ ├── arbitrum-sepolia │ │ │ │ ├── 20231214_143646 │ │ │ │ │ └── deploy-20231214_143646.log │ │ │ │ ├── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ │ └── 20240318_161821 │ │ │ │ │ └── deploy-20240318_161821.log │ │ │ ├── avalanche │ │ │ │ └── 20240318_151526 │ │ │ │ │ └── deploy-20240318_151526.log │ │ │ ├── base-testnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ │ └── 20240318_161821 │ │ │ │ │ └── deploy-20240318_161821.log │ │ │ ├── base │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_140106 │ │ │ │ │ └── deploy-20240209_140106.log │ │ │ │ └── 20240318_122828 │ │ │ │ │ └── deploy-20240318_122828.log │ │ │ ├── celo-mainnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_135615 │ │ │ │ │ └── deploy-20240209_135615.log │ │ │ │ └── 20240318_122828 │ │ │ │ │ └── deploy-20240318_122828.log │ │ │ ├── celo-testnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ │ └── 20240318_161821 │ │ │ │ │ └── deploy-20240318_161821.log │ │ │ ├── fantom │ │ │ │ └── 20240318_161200 │ │ │ │ │ └── deploy-20240318_161200.log │ │ │ ├── ftmTestnet │ │ │ │ └── 20240318_161200 │ │ │ │ │ └── deploy-20240318_161200.log │ │ │ ├── fuji │ │ │ │ └── 20240318_155955 │ │ │ │ │ └── deploy-20240318_155955.log │ │ │ ├── gnosis │ │ │ │ └── 20240912_141426 │ │ │ │ │ └── deploy-20240912_141426.log │ │ │ ├── goerli │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ └── 20240209_085224 │ │ │ │ │ └── deploy-20240209_085224.log │ │ │ ├── hedera-mainnet │ │ │ │ └── 20250210_161400 │ │ │ │ │ └── deploy-20250210_161400.log │ │ │ ├── lukso-mainnet │ │ │ │ └── 20240419_181832 │ │ │ │ │ └── deploy-20240419_181832.log │ │ │ ├── lukso-testnet │ │ │ │ └── 20240412_091939 │ │ │ │ │ └── deploy-20240412_091939.log │ │ │ ├── mainnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_143106 │ │ │ │ │ └── deploy-20240209_143106.log │ │ │ │ └── 20240319_124950 │ │ │ │ │ └── deploy-20240319_124950.log │ │ │ ├── metisAndromeda │ │ │ │ └── 20240729_144147 │ │ │ │ │ └── deploy-20240729_144147.log │ │ │ ├── mumbai │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_085719 │ │ │ │ │ └── deploy-20240209_085719.log │ │ │ │ └── 20240318_160657 │ │ │ │ │ └── deploy-20240318_160657.log │ │ │ ├── optimism-goerli │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ └── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ ├── optimism-mainnet │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_135615 │ │ │ │ │ └── deploy-20240209_135615.log │ │ │ │ └── 20240318_122828 │ │ │ │ │ └── deploy-20240318_122828.log │ │ │ ├── optimism-sepolia │ │ │ │ ├── 20240122_202807 │ │ │ │ │ └── deploy-20240122_202807.log │ │ │ │ ├── 20240209_090344 │ │ │ │ │ └── deploy-20240209_090344.log │ │ │ │ └── 20240318_161821 │ │ │ │ │ └── deploy-20240318_161821.log │ │ │ ├── polygon │ │ │ │ ├── 20231102_221325 │ │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_140351 │ │ │ │ │ └── deploy-20240209_140351.log │ │ │ │ └── 20240318_122828 │ │ │ │ │ └── deploy-20240318_122828.log │ │ │ ├── scroll │ │ │ │ ├── 20240318_154524 │ │ │ │ │ └── deploy-20240318_154524.log │ │ │ │ ├── 20240318_154639 │ │ │ │ │ └── deploy-20240318_154639.log │ │ │ │ └── 20240318_154842 │ │ │ │ │ └── deploy-20240318_154842.log │ │ │ ├── sei-devnet │ │ │ │ ├── 20240410_091345 │ │ │ │ │ └── deploy-20240410_091345.log │ │ │ │ ├── 20240410_103415 │ │ │ │ │ └── deploy-20240410_103415.log │ │ │ │ └── 20240410_181758 │ │ │ │ │ └── deploy-20240410_181758.log │ │ │ ├── sei-mainnet │ │ │ │ ├── 20240528_190400 │ │ │ │ │ └── deploy-20240528_190400.log │ │ │ │ └── 20240529_144402 │ │ │ │ │ └── deploy-20240529_144402.log │ │ │ └── sepolia │ │ │ │ ├── 20231102_221325 │ │ │ │ └── deploy-20231102_221325.log │ │ │ │ ├── 20240209_085719 │ │ │ │ └── deploy-20240209_085719.log │ │ │ │ ├── 20240209_090344 │ │ │ │ └── deploy-20240209_090344.log │ │ │ │ ├── 20240318_160212 │ │ │ │ └── deploy-20240318_160212.log │ │ │ │ ├── 20240318_160416 │ │ │ │ └── deploy-20240318_160416.log │ │ │ │ └── 20240318_162455 │ │ │ │ └── deploy-20240318_162455.log │ │ ├── deployDonationVotingMerkleDistributionVault │ │ │ ├── arbitrum-goerli │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ ├── arbitrum-mainnet │ │ │ │ ├── 20231102_230140 │ │ │ │ │ └── deploy-20231102_230140.log │ │ │ │ ├── 20240209_140611 │ │ │ │ │ └── deploy-20240209_140611.log │ │ │ │ └── 20240209_142739 │ │ │ │ │ └── deploy-20240209_142739.log │ │ │ ├── arbitrum-sepolia │ │ │ │ ├── 20231214_143820 │ │ │ │ │ └── deploy-20231214_143820.log │ │ │ │ └── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ ├── base-testnet │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ ├── base │ │ │ │ ├── 20231102_230140 │ │ │ │ │ └── deploy-20231102_230140.log │ │ │ │ ├── 20240209_140611 │ │ │ │ │ └── deploy-20240209_140611.log │ │ │ │ ├── 20240209_141342 │ │ │ │ │ └── deploy-20240209_141342.log │ │ │ │ └── 20240209_142739 │ │ │ │ │ └── deploy-20240209_142739.log │ │ │ ├── celo-mainnet │ │ │ │ ├── 20231102_230140 │ │ │ │ │ └── deploy-20231102_230140.log │ │ │ │ └── 20240209_140611 │ │ │ │ │ └── deploy-20240209_140611.log │ │ │ ├── celo-testnet │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ ├── goerli │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_085224 │ │ │ │ │ └── deploy-20240209_085224.log │ │ │ ├── mainnet │ │ │ │ ├── 20231102_230140 │ │ │ │ │ └── deploy-20231102_230140.log │ │ │ │ └── 20240209_143519 │ │ │ │ │ └── deploy-20240209_143519.log │ │ │ ├── mumbai │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091358 │ │ │ │ │ └── deploy-20240209_091358.log │ │ │ ├── optimism-goerli │ │ │ │ ├── 20231102_222432 │ │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ ├── optimism-mainnet │ │ │ │ ├── 20231102_230656 │ │ │ │ │ └── deploy-20231102_230656.log │ │ │ │ └── 20240209_140611 │ │ │ │ │ └── deploy-20240209_140611.log │ │ │ ├── optimism-sepolia │ │ │ │ ├── 20240122_202944 │ │ │ │ │ └── deploy-20240122_202944.log │ │ │ │ ├── 20240209_091534 │ │ │ │ │ └── deploy-20240209_091534.log │ │ │ │ └── 20240209_094116 │ │ │ │ │ └── deploy-20240209_094116.log │ │ │ ├── polygon │ │ │ │ ├── 20231102_230140 │ │ │ │ │ └── deploy-20231102_230140.log │ │ │ │ └── 20240209_140611 │ │ │ │ │ └── deploy-20240209_140611.log │ │ │ └── sepolia │ │ │ │ ├── 20231102_222432 │ │ │ │ └── deploy-20231102_222432.log │ │ │ │ ├── 20231102_225427 │ │ │ │ └── deploy-20231102_225427.log │ │ │ │ └── 20240209_091534 │ │ │ │ └── deploy-20240209_091534.log │ │ ├── deployEasyRetrofunding │ │ │ └── sepolia │ │ │ │ ├── 20250107_150303 │ │ │ │ └── deploy-20250107_150303.log │ │ │ │ └── 20250107_150313 │ │ │ │ └── deploy-20250107_150313.log │ │ ├── deployImpactStream │ │ │ ├── celo-mainnet │ │ │ │ └── 20231106_123525 │ │ │ │ │ └── deploy-20231106_123525.log │ │ │ ├── celo-testnet │ │ │ │ └── 20231106_123416 │ │ │ │ │ └── deploy-20231106_123416.log │ │ │ └── goerli │ │ │ │ ├── 20231106_122925 │ │ │ │ └── deploy-20231106_122925.log │ │ │ │ └── 20231106_123207 │ │ │ │ └── deploy-20231106_123207.log │ │ ├── deployQVSimple │ │ │ ├── arbitrum-goerli │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── arbitrum-sepolia │ │ │ │ └── 20231214_144933 │ │ │ │ │ └── deploy-20231214_144933.log │ │ │ ├── base-testnet │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── base │ │ │ │ ├── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ │ └── 20231102_232427 │ │ │ │ │ └── deploy-20231102_232427.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── celo-testnet │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── goerli │ │ │ │ └── 20231102_231115 │ │ │ │ │ └── deploy-20231102_231115.log │ │ │ ├── mainnet │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── mumbai │ │ │ │ └── 20231102_230817 │ │ │ │ │ └── deploy-20231102_230817.log │ │ │ ├── optimism-goerli │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ ├── optimism-mainnet │ │ │ │ ├── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ │ └── 20231102_232427 │ │ │ │ │ └── deploy-20231102_232427.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240122_203113 │ │ │ │ │ └── deploy-20240122_203113.log │ │ │ ├── polygon │ │ │ │ └── 20231102_231334 │ │ │ │ │ └── deploy-20231102_231334.log │ │ │ └── sepolia │ │ │ │ └── 20231102_231334 │ │ │ │ └── deploy-20231102_231334.log │ │ ├── deployRFPCommittee │ │ │ ├── arbitrum-goerli │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── arbitrum-mainnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── arbitrum-sepolia │ │ │ │ └── 20231214_143957 │ │ │ │ │ └── deploy-20231214_143957.log │ │ │ ├── base-testnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── base │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── celo-mainnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── celo-testnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── goerli │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── mainnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── mumbai │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-goerli │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-mainnet │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-sepolia │ │ │ │ └── 20240122_203256 │ │ │ │ │ └── deploy-20240122_203256.log │ │ │ ├── polygon │ │ │ │ └── 20231102_232742 │ │ │ │ │ └── deploy-20231102_232742.log │ │ │ └── sepolia │ │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ └── deployRFPSimple │ │ │ ├── arbitrum-goerli │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── arbitrum-mainnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── arbitrum-sepolia │ │ │ └── 20231214_144100 │ │ │ │ └── deploy-20231214_144100.log │ │ │ ├── base-testnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── base │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── celo-mainnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── celo-testnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── goerli │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── mainnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── mumbai │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-goerli │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-mainnet │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ ├── optimism-sepolia │ │ │ └── 20240122_203256 │ │ │ │ └── deploy-20240122_203256.log │ │ │ ├── polygon │ │ │ └── 20231102_232742 │ │ │ │ └── deploy-20231102_232742.log │ │ │ └── sepolia │ │ │ └── 20231102_232742 │ │ │ └── deploy-20231102_232742.log │ └── zksync │ │ ├── deployEraAllo │ │ ├── zkSyncMainnet │ │ │ └── 20240410_191731 │ │ │ │ └── deploy-20240410_191731.log │ │ └── zkSyncTestnet │ │ │ └── 20240410_190338 │ │ │ └── deploy-20240410_190338.log │ │ ├── deployEraRegistry │ │ ├── zkSyncMainnet │ │ │ └── 20240410_191602 │ │ │ │ └── deploy-20240410_191602.log │ │ └── zkSyncTestnet │ │ │ └── 20240410_185857 │ │ │ └── deploy-20240410_185857.log │ │ ├── factory │ │ ├── deployDGLFactory │ │ │ ├── zkSyncMainnet │ │ │ │ ├── 20240517_120102 │ │ │ │ │ └── deploy-20240517_120102.log │ │ │ │ └── 20240521_153654 │ │ │ │ │ └── deploy-20240521_153654.log │ │ │ └── zkSyncTestnet │ │ │ │ ├── 20240517_115914 │ │ │ │ └── deploy-20240517_115914.log │ │ │ │ └── 20240521_153654 │ │ │ │ └── deploy-20240521_153654.log │ │ └── deployDVMDTFactory │ │ │ ├── zkSyncMainnet │ │ │ ├── 20240517_120102 │ │ │ │ └── deploy-20240517_120102.log │ │ │ └── 20240521_153654 │ │ │ │ └── deploy-20240521_153654.log │ │ │ └── zkSyncTestnet │ │ │ ├── 20240517_115914 │ │ │ └── deploy-20240517_115914.log │ │ │ └── 20240521_153654 │ │ │ └── deploy-20240521_153654.log │ │ └── strategies │ │ ├── deployEraDirectGrants │ │ ├── zkSyncMainnet │ │ │ ├── 20240410_191846 │ │ │ │ └── deploy-20240410_191846.log │ │ │ ├── 20240410_191939 │ │ │ │ └── deploy-20240410_191939.log │ │ │ ├── 20240410_192036 │ │ │ │ └── deploy-20240410_192036.log │ │ │ └── 20240410_192204 │ │ │ │ └── deploy-20240410_192204.log │ │ └── zkSyncTestnet │ │ │ ├── 20240410_190539 │ │ │ └── deploy-20240410_190539.log │ │ │ ├── 20240410_190715 │ │ │ └── deploy-20240410_190715.log │ │ │ ├── 20240410_190852 │ │ │ └── deploy-20240410_190852.log │ │ │ └── 20240410_191024 │ │ │ └── deploy-20240410_191024.log │ │ ├── deployEraDirectGrantsLite │ │ ├── zkSyncMainnet │ │ │ └── 20240513_165104 │ │ │ │ └── deploy-20240513_165104.log │ │ └── zkSyncTestnet │ │ │ └── 20240513_164936 │ │ │ └── deploy-20240513_164936.log │ │ └── deployEraDonationVotingMerkleDistributionDirect │ │ ├── zkSyncMainnet │ │ └── 20240410_192305 │ │ │ └── deploy-20240410_192305.log │ │ └── zkSyncTestnet │ │ └── 20240410_191253 │ │ └── deploy-20240410_191253.log ├── drainer │ └── drain.log ├── gas-report.log └── gas-table.md ├── scripts ├── config │ ├── allo.config.ts │ ├── common.config.ts │ ├── registry.config.ts │ └── strategies.config.ts ├── core │ ├── deployAllNetworks.sh │ ├── deployAllo.ts │ ├── deployAlloV1ToV2ProfileMigration.ts │ ├── deployContractFactory.ts │ ├── deployRegistry.ts │ ├── reports │ │ └── deployment-logs │ │ │ ├── core │ │ │ └── deploy.log │ │ │ └── strategies │ │ │ ├── deployDonationVotingMerkleDistributionDirect │ │ │ └── goerli │ │ │ │ └── 20240209_085129 │ │ │ │ └── deploy-20240209_085129.log │ │ │ └── deployDonationVotingMerkleDistributionVault │ │ │ └── goerli │ │ │ └── 20240209_085129 │ │ │ └── deploy-20240209_085129.log │ ├── transferProxyAdminOwnership.ts │ └── upgrades │ │ ├── proposeUpgradeAllo.ts │ │ ├── proposeUpgradeRegistry.ts │ │ ├── upgradeAllNetworks.sh │ │ ├── upgradeAllo.ts │ │ └── upgradeRegistry.ts ├── deployments │ ├── DGLFactory.deployment.json │ ├── DVMDTFactory.deployment.json │ ├── allo.deployment.json │ ├── contractFactory.deployment.json │ ├── directallocationstrategy.deployment.json │ ├── directgrantslitestrategy.deployment.json │ ├── directgrantssimplestrategy.deployment.json │ ├── donationvotingmerkledistributiondirecttransferstrategy.deployment.json │ ├── donationvotingmerkledistributionvaultstrategy.deployment.json │ ├── easyretrofundingstrategy.deployment.json │ ├── ltiphedgeygovernorstrategy.deployment.json │ ├── ltiphedgeystrategy.deployment.json │ ├── qvimpactstreamstrategy.deployment.json │ ├── qvsimplestrategy.deployment.json │ ├── registry.deployment.json │ ├── rfpcommitteestrategy.deployment.json │ └── rfpsimplestrategy.deployment.json ├── other │ ├── drainAllNetworks.sh │ └── walletDrainer.ts ├── strategies │ ├── addToCloneableStrategies.ts │ ├── deployDirectAllocation.ts │ ├── deployDirectGrants.ts │ ├── deployDirectGrantsLite.ts │ ├── deployDonationVotingMerkleDistributionDirect.ts │ ├── deployDonationVotingMerkleDistributionVault.ts │ ├── deployEasyRetroFunding.ts │ ├── deployImpactStream.ts │ ├── deployLTIPHedgeyGovernorStrategy.ts │ ├── deployLTIPHedgeyStrategy.ts │ ├── deployQVSimple.ts │ ├── deployRFPCommittee.ts │ ├── deployRFPSimple.ts │ └── deployStrategies.ts ├── test │ ├── createDirectAllocationPool.ts │ ├── createPool.ts │ ├── createProfile.ts │ └── superfluid.ts └── utils │ ├── Validator.ts │ ├── deployProxy.ts │ └── scripts.ts ├── test ├── foundry │ ├── core │ │ ├── Allo.t.sol │ │ ├── Anchor.t.sol │ │ └── Registry.t.sol │ ├── factory │ │ └── ContractFactory.t.sol │ ├── fuzz │ │ └── QVSimpleStrategyFuzz.t.sol │ ├── shared │ │ ├── Accounts.sol │ │ ├── AlloSetup.sol │ │ ├── EventSetup.sol │ │ ├── HedgeySetup.sol │ │ ├── RegistrySetup.sol │ │ ├── StrategySetup.sol │ │ └── Time.sol │ └── strategies │ │ ├── BaseStrategy.t.sol │ │ ├── DirectAllocation.t.sol │ │ ├── DirectGrantsLite.t.sol │ │ ├── DirectGrantsSimpleStrategy.t.sol │ │ ├── DonationVotingCustomRegistryStrategy.t.sol │ │ ├── DonationVotingMerkleDistributionBase.t.sol │ │ ├── DonationVotingMerkleDistributionDirectTransferStrategy.t.sol │ │ ├── DonationVotingMerkleDistributionVaultStrategy.t.sol │ │ ├── DonationVotingStrategy.t.sol │ │ ├── EasyRFStrategy.t.sol │ │ ├── HackathonQVStrategy.t.sol │ │ ├── LTIPHedgeyGovernanceStrategy.t.sol │ │ ├── LTIPHedgeyStrategy.t.sol │ │ ├── LTIPSimpleStrategy.t.sol │ │ ├── MicroGrantsBaseStrategy.t.sol │ │ ├── MicroGrantsGovStrategy.t.sol │ │ ├── MicroGrantsHatsStrategy.t.sol │ │ ├── MicroGrantsStrategy.t.sol │ │ ├── ProportionalPayoutStrategy.t.sol │ │ ├── QVBaseStrategy.t.sol │ │ ├── QVGovernanceERC20Votes.t.sol │ │ ├── QVImpactStreamStrategyTest.t.sol │ │ ├── QVNftTieredStrategy.t.sol │ │ ├── QVSimpleStrategy.t.sol │ │ ├── RFPCommitteeStrategy.t.sol │ │ ├── RFPSimpleStrategy.t.sol │ │ ├── SQFSuperFluidStrategy.t.sol │ │ ├── SimpleProjectRegistry.t.sol │ │ ├── WrappedVotingNftMintStrategy.t.sol │ │ ├── hedgey │ │ ├── HedgeyRFPCommitteeStrategy.t.sol │ │ └── HedgeySetup.sol │ │ └── sablier-v2 │ │ ├── LockupBase.t.sol │ │ ├── LockupDynamicStrategy.t.sol │ │ └── LockupLinearStrategy.t.sol ├── integration │ └── .gitkeep ├── invariant │ └── .gitkeep ├── unit │ └── .gitkeep └── utils │ ├── DonationVotingMerkleDistributionBaseMock.sol │ ├── GasHelpers.sol │ ├── MockEAS.sol │ ├── MockERC20.sol │ ├── MockERC20Permit.sol │ ├── MockERC20PermitDAI.sol │ ├── MockERC20Vote.sol │ ├── MockERC721.sol │ ├── MockHats.sol │ ├── MockMicroGrantsBaseStrategy.sol │ ├── MockPassportDecoder.sol │ ├── MockRevertingReceiver.sol │ ├── MockStrategy.sol │ ├── MockUniversalGov.sol │ ├── Permit2Mock.sol │ ├── PermitSigUtils.sol │ ├── PermitSigUtilsDAI.sol │ ├── QVBaseStrategyTestMock.sol │ ├── TestStrategy.sol │ └── TestUtilities.sol └── tsconfig.json /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage 5 | scripts -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/forge-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.github/workflows/forge-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.openzeppelin/arbitrum-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/arbitrum-one.json -------------------------------------------------------------------------------- /.openzeppelin/avalanche-fuji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/avalanche-fuji.json -------------------------------------------------------------------------------- /.openzeppelin/avalanche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/avalanche.json -------------------------------------------------------------------------------- /.openzeppelin/celo-alfajores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/celo-alfajores.json -------------------------------------------------------------------------------- /.openzeppelin/celo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/celo.json -------------------------------------------------------------------------------- /.openzeppelin/goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/goerli.json -------------------------------------------------------------------------------- /.openzeppelin/kovan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/kovan.json -------------------------------------------------------------------------------- /.openzeppelin/mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/mainnet.json -------------------------------------------------------------------------------- /.openzeppelin/optimism-goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/optimism-goerli.json -------------------------------------------------------------------------------- /.openzeppelin/optimism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/optimism.json -------------------------------------------------------------------------------- /.openzeppelin/polygon-mumbai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/polygon-mumbai.json -------------------------------------------------------------------------------- /.openzeppelin/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/polygon.json -------------------------------------------------------------------------------- /.openzeppelin/sepolia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/sepolia.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-100.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-1088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-1088.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-11155420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-11155420.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-1329.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-1329.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-250.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-295.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-295.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-296.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-296.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-314.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-314.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-314159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-314159.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-4002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-4002.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-4201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-4201.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-421614.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-421614.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-534352.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-534352.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-713715.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-713715.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-8453.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-8453.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-84531.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.openzeppelin/unknown-84531.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.upgradable/zkSync-era.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.upgradable/zkSync-era.json -------------------------------------------------------------------------------- /.upgradable/zkSync-testnet-sepolia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.upgradable/zkSync-testnet-sepolia.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Allo Code of Conduct 2 | 3 | -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/DEV.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /audit-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/audit-resources.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/bun.lockb -------------------------------------------------------------------------------- /contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/README.md -------------------------------------------------------------------------------- /contracts/core/Allo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Allo.md -------------------------------------------------------------------------------- /contracts/core/Allo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Allo.sol -------------------------------------------------------------------------------- /contracts/core/Anchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Anchor.md -------------------------------------------------------------------------------- /contracts/core/Anchor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Anchor.sol -------------------------------------------------------------------------------- /contracts/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/README.md -------------------------------------------------------------------------------- /contracts/core/Registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Registry.md -------------------------------------------------------------------------------- /contracts/core/Registry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/Registry.sol -------------------------------------------------------------------------------- /contracts/core/interfaces/IAllo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/interfaces/IAllo.sol -------------------------------------------------------------------------------- /contracts/core/interfaces/IRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/interfaces/IRegistry.sol -------------------------------------------------------------------------------- /contracts/core/interfaces/IStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/interfaces/IStrategy.sol -------------------------------------------------------------------------------- /contracts/core/libraries/Clone.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/libraries/Clone.sol -------------------------------------------------------------------------------- /contracts/core/libraries/Errors.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/libraries/Errors.sol -------------------------------------------------------------------------------- /contracts/core/libraries/Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/libraries/Metadata.sol -------------------------------------------------------------------------------- /contracts/core/libraries/Native.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/libraries/Native.sol -------------------------------------------------------------------------------- /contracts/core/libraries/Transfer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/core/libraries/Transfer.sol -------------------------------------------------------------------------------- /contracts/factories/ContractFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/factories/ContractFactory.sol -------------------------------------------------------------------------------- /contracts/factories/DGLFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/factories/DGLFactory.sol -------------------------------------------------------------------------------- /contracts/factories/DVMDTFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/factories/DVMDTFactory.sol -------------------------------------------------------------------------------- /contracts/factories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/factories/README.md -------------------------------------------------------------------------------- /contracts/migration/AlloV1ToV2ProfileMigration.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/migration/AlloV1ToV2ProfileMigration.sol -------------------------------------------------------------------------------- /contracts/migration/BulkProfileMigration.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/migration/BulkProfileMigration.sol -------------------------------------------------------------------------------- /contracts/strategies/BaseStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/BaseStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/README.md -------------------------------------------------------------------------------- /contracts/strategies/SpecTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/SpecTemplate.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/direct-grants-simple/DirectGrantsSimpleStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/direct-grants-simple/DirectGrantsSimpleStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/direct-grants-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/direct-grants-simple/README.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/donation-voting-custom-registry/DonationVotingCustomRegistryStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/donation-voting-custom-registry/DonationVotingCustomRegistryStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/donation-voting-custom-registry/SimpleProjectRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/donation-voting-custom-registry/SimpleProjectRegistry.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/donation-voting-custom-registry/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/donation-voting-custom-registry/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/donation-voting/DonationVotingStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/donation-voting/DonationVotingStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/donation-voting/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/donation-voting/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/easy-rf/EasyRetroFundingStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/easy-rf/EasyRetroFundingStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/hedgey/HedgeyRFPCommitteeStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/hedgey/HedgeyRFPCommitteeStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/MicroGrantsBaseStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/MicroGrantsBaseStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/MicroGrantsGovStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/MicroGrantsGovStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/MicroGrantsHatsStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/MicroGrantsHatsStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/MicroGrantsStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/MicroGrantsStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/README.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/micro-grants/interfaces/UniversalGov.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/micro-grants/interfaces/UniversalGov.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/proportional-payout/ProportionalPayoutStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/proportional-payout/ProportionalPayoutStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/proportional-payout/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/proportional-payout/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-governance/QVGovernanceERC20Votes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-governance/QVGovernanceERC20Votes.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-governance/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-governance/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-hackathon/HackathonQVStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-hackathon/HackathonQVStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-hackathon/SchemaResolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-hackathon/SchemaResolver.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-hackathon/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-hackathon/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-impact-stream/QVImpactStreamStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-impact-stream/QVImpactStreamStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-impact-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-impact-stream/README.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-nft-tiered/QVNftTieredStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-nft-tiered/QVNftTieredStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/qv-nft-tiered/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/qv-nft-tiered/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/sablier-v2/LockupDynamicStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sablier-v2/LockupDynamicStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/sablier-v2/LockupLinearStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sablier-v2/LockupLinearStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/sablier-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sablier-v2/README.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/sqf-superfluid/RecipientSuperApp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sqf-superfluid/RecipientSuperApp.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/sqf-superfluid/RecipientSuperAppFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sqf-superfluid/RecipientSuperAppFactory.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/sqf-superfluid/SQFSuperFluidStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sqf-superfluid/SQFSuperFluidStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/sqf-superfluid/lib/IGitcoinPassportDecoder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/sqf-superfluid/lib/IGitcoinPassportDecoder.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/wrapped-voting-nftmint/NFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/wrapped-voting-nftmint/NFT.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/wrapped-voting-nftmint/NFTFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/wrapped-voting-nftmint/NFTFactory.sol -------------------------------------------------------------------------------- /contracts/strategies/_poc/wrapped-voting-nftmint/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/wrapped-voting-nftmint/Spec.md -------------------------------------------------------------------------------- /contracts/strategies/_poc/wrapped-voting-nftmint/WrappedVotingNftMintStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/_poc/wrapped-voting-nftmint/WrappedVotingNftMintStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/direct-allocation/DirectAllocation.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/direct-allocation/DirectAllocation.sol -------------------------------------------------------------------------------- /contracts/strategies/direct-grants-lite/DirectGrantsLite.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/direct-grants-lite/DirectGrantsLite.sol -------------------------------------------------------------------------------- /contracts/strategies/direct-grants-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/direct-grants-lite/README.md -------------------------------------------------------------------------------- /contracts/strategies/direct-grants-lite/direct-grants-lite-audit-report-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/direct-grants-lite/direct-grants-lite-audit-report-final.pdf -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-base/DonationVotingMerkleDistributionBaseStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-base/DonationVotingMerkleDistributionBaseStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-base/IDAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-base/IDAI.sol -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-distribution-direct-transfer/DonationVotingMerkleDistributionDirectTransferStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-distribution-direct-transfer/DonationVotingMerkleDistributionDirectTransferStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-distribution-direct-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-distribution-direct-transfer/README.md -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-distribution-vault/DonationVotingMerkleDistributionVaultStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-distribution-vault/DonationVotingMerkleDistributionVaultStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/donation-voting-merkle-distribution-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/donation-voting-merkle-distribution-vault/README.md -------------------------------------------------------------------------------- /contracts/strategies/easy-rpgf/EasyRPGFStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/easy-rpgf/EasyRPGFStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/easy-rpgf/easy-rpgf-audit-report-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/easy-rpgf/easy-rpgf-audit-report-final.pdf -------------------------------------------------------------------------------- /contracts/strategies/ltip-hedgey-governor/LTIPHedgeyGovernorStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-hedgey-governor/LTIPHedgeyGovernorStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/ltip-hedgey-governor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-hedgey-governor/README.md -------------------------------------------------------------------------------- /contracts/strategies/ltip-hedgey/LTIPHedgeyStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-hedgey/LTIPHedgeyStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/ltip-hedgey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-hedgey/README.md -------------------------------------------------------------------------------- /contracts/strategies/ltip-simple/LTIPSimpleStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-simple/LTIPSimpleStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/ltip-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/ltip-simple/README.md -------------------------------------------------------------------------------- /contracts/strategies/qv-base/QVBaseStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/qv-base/QVBaseStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/qv-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/qv-base/README.md -------------------------------------------------------------------------------- /contracts/strategies/qv-simple/QVSimpleStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/qv-simple/QVSimpleStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/qv-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/qv-simple/README.md -------------------------------------------------------------------------------- /contracts/strategies/rfp-committee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/rfp-committee/README.md -------------------------------------------------------------------------------- /contracts/strategies/rfp-committee/RFPCommitteeStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/rfp-committee/RFPCommitteeStrategy.sol -------------------------------------------------------------------------------- /contracts/strategies/rfp-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/rfp-simple/README.md -------------------------------------------------------------------------------- /contracts/strategies/rfp-simple/RFPSimpleStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/contracts/strategies/rfp-simple/RFPSimpleStrategy.sol -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/zksync/deployEraAllo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/deployEraAllo.ts -------------------------------------------------------------------------------- /deploy/zksync/deployEraContractFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/deployEraContractFactory.ts -------------------------------------------------------------------------------- /deploy/zksync/deployEraRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/deployEraRegistry.ts -------------------------------------------------------------------------------- /deploy/zksync/factory/deployDGLFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/factory/deployDGLFactory.ts -------------------------------------------------------------------------------- /deploy/zksync/factory/deployDVMDTFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/factory/deployDVMDTFactory.ts -------------------------------------------------------------------------------- /deploy/zksync/factory/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/factory/utils.ts -------------------------------------------------------------------------------- /deploy/zksync/strategies/deployEraDirectGrants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/strategies/deployEraDirectGrants.ts -------------------------------------------------------------------------------- /deploy/zksync/strategies/deployEraDirectGrantsLite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/strategies/deployEraDirectGrantsLite.ts -------------------------------------------------------------------------------- /deploy/zksync/strategies/deployEraDonationVotingMerkleDistributionDirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/strategies/deployEraDonationVotingMerkleDistributionDirect.ts -------------------------------------------------------------------------------- /deploy/zksync/strategies/deployEraStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deploy/zksync/strategies/deployEraStrategies.ts -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/.chainId: -------------------------------------------------------------------------------- 1 | 0x144 -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/contracts/chain/era/DGLFactory.sol/DGLFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncMainnet/contracts/chain/era/DGLFactory.sol/DGLFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/contracts/chain/era/DVMDTFactory.sol/DVMDTFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncMainnet/contracts/chain/era/DVMDTFactory.sol/DVMDTFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/contracts/factories/DGLFactory.sol/DGLFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncMainnet/contracts/factories/DGLFactory.sol/DGLFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/contracts/factories/DVMDTFactory.sol/DVMDTFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncMainnet/contracts/factories/DVMDTFactory.sol/DVMDTFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncMainnet/contracts/strategies/direct-grants-lite/DirectGrantsLite.sol/DirectGrantsLiteStrategy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncMainnet/contracts/strategies/direct-grants-lite/DirectGrantsLite.sol/DirectGrantsLiteStrategy.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/.chainId: -------------------------------------------------------------------------------- 1 | 0x12c -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/contracts/chain/era/DGLFactory.sol/DGLFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncTestnet/contracts/chain/era/DGLFactory.sol/DGLFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/contracts/chain/era/DVMDTFactory.sol/DVMDTFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncTestnet/contracts/chain/era/DVMDTFactory.sol/DVMDTFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/contracts/factories/DGLFactory.sol/DGLFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncTestnet/contracts/factories/DGLFactory.sol/DGLFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/contracts/factories/DVMDTFactory.sol/DVMDTFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncTestnet/contracts/factories/DVMDTFactory.sol/DVMDTFactory.json -------------------------------------------------------------------------------- /deployments-zk/zkSyncTestnet/contracts/strategies/direct-grants-lite/DirectGrantsLite.sol/DirectGrantsLiteStrategy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/deployments-zk/zkSyncTestnet/contracts/strategies/direct-grants-lite/DirectGrantsLite.sol/DirectGrantsLiteStrategy.json -------------------------------------------------------------------------------- /docs/DEPLOY_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/docs/DEPLOY_CHECKLIST.md -------------------------------------------------------------------------------- /docs/DEPLOY_STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/docs/DEPLOY_STEPS.md -------------------------------------------------------------------------------- /era.hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/era.hardhat.config.ts -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/foundry.toml -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/funding.json -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/package.json -------------------------------------------------------------------------------- /remappings.era.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/remappings.era.txt -------------------------------------------------------------------------------- /remappings.evm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/remappings.evm.txt -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/remappings.txt -------------------------------------------------------------------------------- /reports/2023.21.09_-_Final_-_Allo_V2_Audit_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/2023.21.09_-_Final_-_Allo_V2_Audit_Report.pdf -------------------------------------------------------------------------------- /reports/deployment-logs/core/deploy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deploy.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/arbitrum-goerli/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/arbitrum-goerli/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/arbitrum-mainnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/arbitrum-mainnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/arbitrum-sepolia/20231214_143055/deploy-20231214_143055.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/arbitrum-sepolia/20231214_143055/deploy-20231214_143055.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/avalanche/20240318_151307/deploy-20240318_151307.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/avalanche/20240318_151307/deploy-20240318_151307.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/base-testnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/base-testnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/base/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/base/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/celo-mainnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/celo-mainnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/celo-testnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/celo-testnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/fantom/20240318_160751/deploy-20240318_160751.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/fantom/20240318_160751/deploy-20240318_160751.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/filecoin-calibration/20240412_195124/deploy-20240412_195124.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/filecoin-calibration/20240412_195124/deploy-20240412_195124.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/filecoin-calibration/20240412_203640/deploy-20240412_203640.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/filecoin-calibration/20240412_203640/deploy-20240412_203640.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_222740/deploy-20240417_222740.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_222740/deploy-20240417_222740.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_225106/deploy-20240417_225106.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_225106/deploy-20240417_225106.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_225457/deploy-20240417_225457.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/filecoin-mainnet/20240417_225457/deploy-20240417_225457.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/ftmTestnet/20240318_160751/deploy-20240318_160751.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/ftmTestnet/20240318_160751/deploy-20240318_160751.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/fuji/20240318_155824/deploy-20240318_155824.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/fuji/20240318_155824/deploy-20240318_155824.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/gnosis/20240912_140957/deploy-20240912_140957.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/gnosis/20240912_140957/deploy-20240912_140957.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/goerli/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/goerli/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/hedera-mainnet/20250210_153916/deploy-20250210_153916.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/hedera-mainnet/20250210_153916/deploy-20250210_153916.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/hedera-testnet/20250207_182922/deploy-20250207_182922.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/hedera-testnet/20250207_182922/deploy-20250207_182922.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/lukso-mainnet/20240419_172024/deploy-20240419_172024.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/lukso-mainnet/20240419_172024/deploy-20240419_172024.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/lukso-testnet/20240412_092516/deploy-20240412_092516.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/lukso-testnet/20240412_092516/deploy-20240412_092516.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/lukso-testnet/20240412_093030/deploy-20240412_093030.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/lukso-testnet/20240412_093030/deploy-20240412_093030.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/mainnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/mainnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/metisAndromeda/20240729_143733/deploy-20240729_143733.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/metisAndromeda/20240729_143733/deploy-20240729_143733.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/mumbai/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/mumbai/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/optimism-goerli/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/optimism-goerli/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/optimism-mainnet/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/optimism-mainnet/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/optimism-sepolia/20240122_202520/deploy-20240122_202520.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/optimism-sepolia/20240122_202520/deploy-20240122_202520.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/polygon/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/polygon/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/scroll/20240318_154246/deploy-20240318_154246.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/scroll/20240318_154246/deploy-20240318_154246.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/sei-devnet/20240410_085810/deploy-20240410_085810.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/sei-devnet/20240410_085810/deploy-20240410_085810.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/sei-devnet/20240410_090804/deploy-20240410_090804.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/sei-devnet/20240410_090804/deploy-20240410_090804.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/sei-mainnet/20240528_184038/deploy-20240528_184038.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/sei-mainnet/20240528_184038/deploy-20240528_184038.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployAllo/sepolia/20231102_214941/deploy-20231102_214941.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployAllo/sepolia/20231102_214941/deploy-20231102_214941.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/arbitrum-goerli/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/arbitrum-goerli/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/arbitrum-mainnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/arbitrum-mainnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/arbitrum-sepolia/20231214_142854/deploy-20231214_142854.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/arbitrum-sepolia/20231214_142854/deploy-20231214_142854.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/avalanche/20240318_151058/deploy-20240318_151058.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/avalanche/20240318_151058/deploy-20240318_151058.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/base-testnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/base-testnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/base/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/base/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/celo-mainnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/celo-mainnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/celo-testnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/celo-testnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/fantom/20240318_160420/deploy-20240318_160420.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/fantom/20240318_160420/deploy-20240318_160420.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/filecoin-calibration/20240412_233154/deploy-20240412_233154.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/filecoin-calibration/20240412_233154/deploy-20240412_233154.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/filecoin-mainnet/20240417_225711/deploy-20240417_225711.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/filecoin-mainnet/20240417_225711/deploy-20240417_225711.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/ftmTestnet/20240318_160420/deploy-20240318_160420.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/ftmTestnet/20240318_160420/deploy-20240318_160420.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/fuji/20240318_155704/deploy-20240318_155704.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/fuji/20240318_155704/deploy-20240318_155704.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/gnosis/20240912_140957/deploy-20240912_140957.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/gnosis/20240912_140957/deploy-20240912_140957.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/goerli/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/goerli/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/hedera-mainnet/20250210_153803/deploy-20250210_153803.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/hedera-mainnet/20250210_153803/deploy-20250210_153803.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/hedera-testnet/20250207_182818/deploy-20250207_182818.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/hedera-testnet/20250207_182818/deploy-20250207_182818.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/hedera-testnet/20250210_153356/deploy-20250210_153356.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/hedera-testnet/20250210_153356/deploy-20250210_153356.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/lukso-mainnet/20240419_172348/deploy-20240419_172348.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/lukso-mainnet/20240419_172348/deploy-20240419_172348.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/lukso-testnet/20240412_093209/deploy-20240412_093209.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/lukso-testnet/20240412_093209/deploy-20240412_093209.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/mainnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/mainnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/metisAndromeda/20240729_143511/deploy-20240729_143511.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/metisAndromeda/20240729_143511/deploy-20240729_143511.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/mumbai/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/mumbai/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/optimism-goerli/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/optimism-goerli/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/optimism-mainnet/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/optimism-mainnet/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/optimism-sepolia/20240122_202321/deploy-20240122_202321.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/optimism-sepolia/20240122_202321/deploy-20240122_202321.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/polygon/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/polygon/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/scroll/20240318_153836/deploy-20240318_153836.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/scroll/20240318_153836/deploy-20240318_153836.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/sei-devnet/20240409_141904/deploy-20240409_141904.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/sei-devnet/20240409_141904/deploy-20240409_141904.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/sei-mainnet/20240528_185509/deploy-20240528_185509.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/sei-mainnet/20240528_185509/deploy-20240528_185509.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployContractFactory/sepolia/20231102_212901/deploy-20231102_212901.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployContractFactory/sepolia/20231102_212901/deploy-20231102_212901.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/arbitrum-mainnet/20231102_212545/deploy-20231102_212545.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/arbitrum-mainnet/20231102_212545/deploy-20231102_212545.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/arbitrum-sepolia/20231214_142629/deploy-20231214_142629.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/arbitrum-sepolia/20231214_142629/deploy-20231214_142629.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/avalanche/20240318_150734/deploy-20240318_150734.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/avalanche/20240318_150734/deploy-20240318_150734.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fantom-testnet/20240318_155831/deploy-20240318_155831.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fantom-testnet/20240318_155831/deploy-20240318_155831.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fantom/20240318_155831/deploy-20240318_155831.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fantom/20240318_155831/deploy-20240318_155831.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/filecoin-calibration/20240412_102206/deploy-20240412_102206.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/filecoin-calibration/20240412_102206/deploy-20240412_102206.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/filecoin-mainnet/20240417_222259/deploy-20240417_222259.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/filecoin-mainnet/20240417_222259/deploy-20240417_222259.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/ftmTestnet/20240318_160159/deploy-20240318_160159.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/ftmTestnet/20240318_160159/deploy-20240318_160159.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_145600/deploy-20240318_145600.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_145600/deploy-20240318_145600.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_150458/deploy-20240318_150458.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_150458/deploy-20240318_150458.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_150532/deploy-20240318_150532.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_150532/deploy-20240318_150532.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_150945/deploy-20240318_150945.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_150945/deploy-20240318_150945.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_150953/deploy-20240318_150953.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_150953/deploy-20240318_150953.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_152249/deploy-20240318_152249.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_152249/deploy-20240318_152249.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_153412/deploy-20240318_153412.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_153412/deploy-20240318_153412.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/fuji/20240318_155235/deploy-20240318_155235.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/fuji/20240318_155235/deploy-20240318_155235.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/gnosis/20240912_140627/deploy-20240912_140627.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/gnosis/20240912_140627/deploy-20240912_140627.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-mainnet/20250210_152758/deploy-20250210_152758.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-mainnet/20250210_152758/deploy-20250210_152758.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-mainnet/20250210_153533/deploy-20250210_153533.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-mainnet/20250210_153533/deploy-20250210_153533.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-testnet/20250207_152703/deploy-20250207_152703.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-testnet/20250207_152703/deploy-20250207_152703.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-testnet/20250207_152933/deploy-20250207_152933.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-testnet/20250207_152933/deploy-20250207_152933.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-testnet/20250210_152934/deploy-20250210_152934.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-testnet/20250210_152934/deploy-20250210_152934.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/hedera-testnet/20250210_153238/deploy-20250210_153238.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/hedera-testnet/20250210_153238/deploy-20250210_153238.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/lukso-mainnet/20240419_171518/deploy-20240419_171518.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/lukso-mainnet/20240419_171518/deploy-20240419_171518.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/lukso-testnet/20240412_092239/deploy-20240412_092239.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/lukso-testnet/20240412_092239/deploy-20240412_092239.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/metis/20240729_142656/deploy-20240729_142656.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/metis/20240729_142656/deploy-20240729_142656.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/metis/20240729_143105/deploy-20240729_143105.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/metis/20240729_143105/deploy-20240729_143105.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/metisAndromeda/20240729_143120/deploy-20240729_143120.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/metisAndromeda/20240729_143120/deploy-20240729_143120.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/metisAndromeda/20240729_143157/deploy-20240729_143157.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/metisAndromeda/20240729_143157/deploy-20240729_143157.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/optimism-sepolia/20240122_201724/deploy-20240122_201724.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/optimism-sepolia/20240122_201724/deploy-20240122_201724.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/scroll/20240318_153529/deploy-20240318_153529.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/scroll/20240318_153529/deploy-20240318_153529.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/scroll/20240318_153711/deploy-20240318_153711.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/scroll/20240318_153711/deploy-20240318_153711.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-devnet/20240409_142035/deploy-20240409_142035.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-devnet/20240409_142035/deploy-20240409_142035.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-devnet/20240409_142132/deploy-20240409_142132.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-devnet/20240409_142132/deploy-20240409_142132.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-devnet/20240410_084934/deploy-20240410_084934.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-devnet/20240410_084934/deploy-20240410_084934.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183234/deploy-20240528_183234.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183234/deploy-20240528_183234.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183513/deploy-20240528_183513.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183513/deploy-20240528_183513.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183701/deploy-20240528_183701.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183701/deploy-20240528_183701.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183752/deploy-20240528_183752.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sei-mainnet/20240528_183752/deploy-20240528_183752.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sepolia/20240318_151332/deploy-20240318_151332.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sepolia/20240318_151332/deploy-20240318_151332.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sepolia/20240318_151343/deploy-20240318_151343.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sepolia/20240318_151343/deploy-20240318_151343.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sepolia/20240318_151506/deploy-20240318_151506.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sepolia/20240318_151506/deploy-20240318_151506.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sepolia/20240318_151525/deploy-20240318_151525.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sepolia/20240318_151525/deploy-20240318_151525.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/sepolia/20240318_152028/deploy-20240318_152028.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/sepolia/20240318_152028/deploy-20240318_152028.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/deployRegistry/zkSyncMainnet/20240410_191531/deploy-20240410_191531.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/deployRegistry/zkSyncMainnet/20240410_191531/deploy-20240410_191531.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-goerli/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-goerli/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-mainnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-mainnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-sepolia/20231214_143634/deploy-20231214_143634.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/arbitrum-sepolia/20231214_143634/deploy-20231214_143634.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/base-testnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/base-testnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/base/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/base/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/celo-mainnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/celo-mainnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/celo-testnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/celo-testnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/goerli/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/goerli/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/mainnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/mainnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/mumbai/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/mumbai/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/optimism-goerli/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/optimism-goerli/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/optimism-mainnet/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/optimism-mainnet/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/optimism-sepolia/20240122_202757/deploy-20240122_202757.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/optimism-sepolia/20240122_202757/deploy-20240122_202757.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/polygon/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/polygon/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/core/transferProxyAdminOwnership/sepolia/20231102_221158/deploy-20231102_221158.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/core/transferProxyAdminOwnership/sepolia/20231102_221158/deploy-20231102_221158.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/arbitrum-mainnet/20240724_114227/deploy-20240724_114227.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/arbitrum-mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/arbitrum-mainnet/20240724_115121/deploy-20240724_115121.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/avalanche/20240724_152522/deploy-20240724_152522.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/avalanche/20240724_152726/deploy-20240724_152726.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/avalanche/20240724_152726/deploy-20240724_152726.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/base/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/base/20240724_115121/deploy-20240724_115121.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/celo-mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/celo-mainnet/20240724_115121/deploy-20240724_115121.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/fantom/20240724_152522/deploy-20240724_152522.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/fantom/20240724_152726/deploy-20240724_152726.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/fantom/20240724_152726/deploy-20240724_152726.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/gnosis/20240912_141426/deploy-20240912_141426.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/gnosis/20240912_141426/deploy-20240912_141426.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/hedera-mainnet/20250210_154806/deploy-20250210_154806.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/hedera-mainnet/20250210_154806/deploy-20250210_154806.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/hedera-testnet/20250207_183231/deploy-20250207_183231.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/hedera-testnet/20250207_183231/deploy-20250207_183231.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/lukso-mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/lukso-mainnet/20240724_123325/deploy-20240724_123325.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/lukso-mainnet/20240724_123702/deploy-20240724_123702.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/lukso-mainnet/20240724_123702/deploy-20240724_123702.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_114227/deploy-20240724_114227.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_114227/deploy-20240724_114227.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_123325/deploy-20240724_123325.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_123702/deploy-20240724_123702.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_123702/deploy-20240724_123702.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_151544/deploy-20240724_151544.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/mainnet/20240724_151544/deploy-20240724_151544.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/metisAndromeda/20240729_144147/deploy-20240729_144147.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/metisAndromeda/20240729_144147/deploy-20240729_144147.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/optimism-mainnet/20240724_114227/deploy-20240724_114227.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/optimism-mainnet/20240724_114227/deploy-20240724_114227.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/optimism-mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/optimism-mainnet/20240724_115121/deploy-20240724_115121.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/scroll/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/scroll/20240724_123325/deploy-20240724_123325.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/scroll/20240724_123702/deploy-20240724_123702.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/scroll/20240724_123702/deploy-20240724_123702.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sei-mainnet/20240724_115121/deploy-20240724_115121.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sei-mainnet/20240724_123325/deploy-20240724_123325.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sei-mainnet/20240724_123702/deploy-20240724_123702.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/sei-mainnet/20240724_123702/deploy-20240724_123702.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240711_092006/deploy-20240711_092006.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240711_092006/deploy-20240711_092006.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_101849/deploy-20240716_101849.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_101849/deploy-20240716_101849.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_102132/deploy-20240716_102132.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_102132/deploy-20240716_102132.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_102240/deploy-20240716_102240.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectAllocation/sepolia/20240716_102240/deploy-20240716_102240.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/arbitrum-goerli/20240215_130431/deploy-20240215_130431.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/arbitrum-goerli/20240215_130431/deploy-20240215_130431.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/arbitrum-goerli/20240215_130734/deploy-20240215_130734.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/arbitrum-goerli/20240215_130734/deploy-20240215_130734.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/arbitrum-mainnet/20240318_123606/deploy-20240318_123606.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/arbitrum-mainnet/20240318_123606/deploy-20240318_123606.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/arbitrum-sepolia/20240215_131034/deploy-20240215_131034.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/arbitrum-sepolia/20240215_131034/deploy-20240215_131034.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/arbitrum-sepolia/20240318_162700/deploy-20240318_162700.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/arbitrum-sepolia/20240318_162700/deploy-20240318_162700.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/avalanche/20240318_151751/deploy-20240318_151751.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/avalanche/20240318_151751/deploy-20240318_151751.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/base-testnet/20240215_130752/deploy-20240215_130752.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/base-testnet/20240215_130752/deploy-20240215_130752.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/base/20240318_123606/deploy-20240318_123606.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/base/20240318_123606/deploy-20240318_123606.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/celo-mainnet/20240318_123606/deploy-20240318_123606.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/celo-mainnet/20240318_123606/deploy-20240318_123606.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/celo-testnet/20240215_130752/deploy-20240215_130752.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/celo-testnet/20240215_130752/deploy-20240215_130752.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/celo-testnet/20240318_163036/deploy-20240318_163036.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/celo-testnet/20240318_163036/deploy-20240318_163036.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/fantom/20240318_161457/deploy-20240318_161457.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/fantom/20240318_161457/deploy-20240318_161457.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/ftmTestnet/20240318_161457/deploy-20240318_161457.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/ftmTestnet/20240318_161457/deploy-20240318_161457.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/fuji/20240318_160858/deploy-20240318_160858.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/fuji/20240318_160858/deploy-20240318_160858.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/goerli/20240215_125903/deploy-20240215_125903.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/goerli/20240215_125903/deploy-20240215_125903.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/lukso-mainnet/20240419_172709/deploy-20240419_172709.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/lukso-mainnet/20240419_172709/deploy-20240419_172709.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/lukso-testnet/20240412_093347/deploy-20240412_093347.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/lukso-testnet/20240412_093347/deploy-20240412_093347.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/mainnet/20240319_125308/deploy-20240319_125308.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/mainnet/20240319_125308/deploy-20240319_125308.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240215_125903/deploy-20240215_125903.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240215_125903/deploy-20240215_125903.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240226_142340/deploy-20240226_142340.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240226_142340/deploy-20240226_142340.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240318_160858/deploy-20240318_160858.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/mumbai/20240318_160858/deploy-20240318_160858.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/optimism-goerli/20240215_130431/deploy-20240215_130431.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/optimism-goerli/20240215_130431/deploy-20240215_130431.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/optimism-mainnet/20240318_123606/deploy-20240318_123606.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/optimism-mainnet/20240318_123606/deploy-20240318_123606.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/optimism-sepolia/20240215_131034/deploy-20240215_131034.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/optimism-sepolia/20240215_131034/deploy-20240215_131034.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/optimism-sepolia/20240318_162700/deploy-20240318_162700.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/optimism-sepolia/20240318_162700/deploy-20240318_162700.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/polygon/20240318_123606/deploy-20240318_123606.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/polygon/20240318_123606/deploy-20240318_123606.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_155014/deploy-20240318_155014.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_155014/deploy-20240318_155014.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_155137/deploy-20240318_155137.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_155137/deploy-20240318_155137.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_163855/deploy-20240318_163855.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/scroll/20240318_163855/deploy-20240318_163855.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_091414/deploy-20240410_091414.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_091414/deploy-20240410_091414.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_173154/deploy-20240410_173154.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_173154/deploy-20240410_173154.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_180752/deploy-20240410_180752.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_180752/deploy-20240410_180752.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_181512/deploy-20240410_181512.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sei-devnet/20240410_181512/deploy-20240410_181512.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sepolia/20240215_130431/deploy-20240215_130431.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sepolia/20240215_130431/deploy-20240215_130431.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrants/sepolia/20240318_162533/deploy-20240318_162533.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrants/sepolia/20240318_162533/deploy-20240318_162533.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-mainnet/20240513_112450/deploy-20240513_112450.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-mainnet/20240513_112450/deploy-20240513_112450.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_111032/deploy-20240513_111032.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_111032/deploy-20240513_111032.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_111458/deploy-20240513_111458.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_111458/deploy-20240513_111458.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_120058/deploy-20240513_120058.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/arbitrum-sepolia/20240513_120058/deploy-20240513_120058.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/avalanche/20240513_124742/deploy-20240513_124742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/avalanche/20240513_124742/deploy-20240513_124742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/base-testnet/20240513_110727/deploy-20240513_110727.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/base-testnet/20240513_110727/deploy-20240513_110727.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/base-testnet/20240513_120839/deploy-20240513_120839.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/base-testnet/20240513_120839/deploy-20240513_120839.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/base/20240513_112848/deploy-20240513_112848.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/base/20240513_112848/deploy-20240513_112848.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/celo-mainnet/20240513_112103/deploy-20240513_112103.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/celo-mainnet/20240513_112103/deploy-20240513_112103.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/celo-testnet/20240513_110727/deploy-20240513_110727.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/celo-testnet/20240513_110727/deploy-20240513_110727.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/fantom/20240513_114525/deploy-20240513_114525.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/fantom/20240513_114525/deploy-20240513_114525.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/ftmTestnet/20240513_114327/deploy-20240513_114327.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/ftmTestnet/20240513_114327/deploy-20240513_114327.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/fuji/20240513_110346/deploy-20240513_110346.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/fuji/20240513_110346/deploy-20240513_110346.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/gnosis/20240912_141426/deploy-20240912_141426.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/gnosis/20240912_141426/deploy-20240912_141426.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/hedera-mainnet/20250210_154612/deploy-20250210_154612.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/hedera-mainnet/20250210_154612/deploy-20250210_154612.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/hedera-testnet/20250207_183113/deploy-20250207_183113.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/hedera-testnet/20250207_183113/deploy-20250207_183113.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/lukso-mainnet/20240513_115320/deploy-20240513_115320.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/lukso-mainnet/20240513_115320/deploy-20240513_115320.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/lukso-testnet/20240513_115013/deploy-20240513_115013.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/lukso-testnet/20240513_115013/deploy-20240513_115013.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/mainnet/20240513_113935/deploy-20240513_113935.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/mainnet/20240513_113935/deploy-20240513_113935.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/metisAndromeda/20240729_144147/deploy-20240729_144147.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/metisAndromeda/20240729_144147/deploy-20240729_144147.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/optimism-mainnet/20240513_111848/deploy-20240513_111848.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/optimism-mainnet/20240513_111848/deploy-20240513_111848.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/optimism-sepolia/20240513_120251/deploy-20240513_120251.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/optimism-sepolia/20240513_120251/deploy-20240513_120251.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/scroll/20240513_114142/deploy-20240513_114142.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/scroll/20240513_114142/deploy-20240513_114142.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/sei-devnet/20240513_114748/deploy-20240513_114748.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/sei-devnet/20240513_114748/deploy-20240513_114748.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/sei-mainnet/20240528_190439/deploy-20240528_190439.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/sei-mainnet/20240528_190439/deploy-20240528_190439.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/sei-mainnet/20240529_144259/deploy-20240529_144259.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/sei-mainnet/20240529_144259/deploy-20240529_144259.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/sepolia/20240419_162255/deploy-20240419_162255.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/sepolia/20240419_162255/deploy-20240419_162255.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/sepolia/20240513_105011/deploy-20240513_105011.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/sepolia/20240513_105011/deploy-20240513_105011.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDirectGrantsLite/zkSyncTestnet/20240513_125038/deploy-20240513_125038.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDirectGrantsLite/zkSyncTestnet/20240513_125038/deploy-20240513_125038.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/avalanche/20240318_151526/deploy-20240318_151526.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/avalanche/20240318_151526/deploy-20240318_151526.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20240209_090344/deploy-20240209_090344.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20240209_090344/deploy-20240209_090344.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20240318_161821/deploy-20240318_161821.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base-testnet/20240318_161821/deploy-20240318_161821.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20240209_140106/deploy-20240209_140106.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20240209_140106/deploy-20240209_140106.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20240318_122828/deploy-20240318_122828.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/base/20240318_122828/deploy-20240318_122828.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/fantom/20240318_161200/deploy-20240318_161200.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/fantom/20240318_161200/deploy-20240318_161200.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/ftmTestnet/20240318_161200/deploy-20240318_161200.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/ftmTestnet/20240318_161200/deploy-20240318_161200.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/fuji/20240318_155955/deploy-20240318_155955.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/fuji/20240318_155955/deploy-20240318_155955.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/gnosis/20240912_141426/deploy-20240912_141426.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/gnosis/20240912_141426/deploy-20240912_141426.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/goerli/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/goerli/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/goerli/20240209_085224/deploy-20240209_085224.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/goerli/20240209_085224/deploy-20240209_085224.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20240209_143106/deploy-20240209_143106.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20240209_143106/deploy-20240209_143106.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20240319_124950/deploy-20240319_124950.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mainnet/20240319_124950/deploy-20240319_124950.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20240209_085719/deploy-20240209_085719.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20240209_085719/deploy-20240209_085719.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20240318_160657/deploy-20240318_160657.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/mumbai/20240318_160657/deploy-20240318_160657.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20240209_140351/deploy-20240209_140351.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20240209_140351/deploy-20240209_140351.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20240318_122828/deploy-20240318_122828.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/polygon/20240318_122828/deploy-20240318_122828.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154524/deploy-20240318_154524.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154524/deploy-20240318_154524.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154639/deploy-20240318_154639.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154639/deploy-20240318_154639.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154842/deploy-20240318_154842.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/scroll/20240318_154842/deploy-20240318_154842.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_091345/deploy-20240410_091345.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_091345/deploy-20240410_091345.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_103415/deploy-20240410_103415.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_103415/deploy-20240410_103415.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_181758/deploy-20240410_181758.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sei-devnet/20240410_181758/deploy-20240410_181758.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20231102_221325/deploy-20231102_221325.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20231102_221325/deploy-20231102_221325.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240209_085719/deploy-20240209_085719.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240209_085719/deploy-20240209_085719.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240209_090344/deploy-20240209_090344.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240209_090344/deploy-20240209_090344.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_160212/deploy-20240318_160212.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_160212/deploy-20240318_160212.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_160416/deploy-20240318_160416.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_160416/deploy-20240318_160416.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_162455/deploy-20240318_162455.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionDirect/sepolia/20240318_162455/deploy-20240318_162455.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20231102_230140/deploy-20231102_230140.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20231102_230140/deploy-20231102_230140.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_140611/deploy-20240209_140611.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_140611/deploy-20240209_140611.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_141342/deploy-20240209_141342.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_141342/deploy-20240209_141342.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_142739/deploy-20240209_142739.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/base/20240209_142739/deploy-20240209_142739.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20231102_222432/deploy-20231102_222432.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20231102_222432/deploy-20231102_222432.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20231102_225427/deploy-20231102_225427.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20231102_225427/deploy-20231102_225427.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20240209_085224/deploy-20240209_085224.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/goerli/20240209_085224/deploy-20240209_085224.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mainnet/20231102_230140/deploy-20231102_230140.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mainnet/20231102_230140/deploy-20231102_230140.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mainnet/20240209_143519/deploy-20240209_143519.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mainnet/20240209_143519/deploy-20240209_143519.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20231102_222432/deploy-20231102_222432.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20231102_222432/deploy-20231102_222432.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20231102_225427/deploy-20231102_225427.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20231102_225427/deploy-20231102_225427.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20240209_091358/deploy-20240209_091358.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/mumbai/20240209_091358/deploy-20240209_091358.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/polygon/20231102_230140/deploy-20231102_230140.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/polygon/20231102_230140/deploy-20231102_230140.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/polygon/20240209_140611/deploy-20240209_140611.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/polygon/20240209_140611/deploy-20240209_140611.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20231102_222432/deploy-20231102_222432.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20231102_222432/deploy-20231102_222432.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20231102_225427/deploy-20231102_225427.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20231102_225427/deploy-20231102_225427.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20240209_091534/deploy-20240209_091534.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployDonationVotingMerkleDistributionVault/sepolia/20240209_091534/deploy-20240209_091534.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployEasyRetrofunding/sepolia/20250107_150303/deploy-20250107_150303.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployEasyRetrofunding/sepolia/20250107_150313/deploy-20250107_150313.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployEasyRetrofunding/sepolia/20250107_150313/deploy-20250107_150313.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployImpactStream/celo-mainnet/20231106_123525/deploy-20231106_123525.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployImpactStream/celo-mainnet/20231106_123525/deploy-20231106_123525.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployImpactStream/celo-testnet/20231106_123416/deploy-20231106_123416.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployImpactStream/celo-testnet/20231106_123416/deploy-20231106_123416.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployImpactStream/goerli/20231106_122925/deploy-20231106_122925.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployImpactStream/goerli/20231106_122925/deploy-20231106_122925.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployImpactStream/goerli/20231106_123207/deploy-20231106_123207.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployImpactStream/goerli/20231106_123207/deploy-20231106_123207.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/arbitrum-goerli/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/arbitrum-goerli/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/arbitrum-mainnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/arbitrum-mainnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/arbitrum-sepolia/20231214_144933/deploy-20231214_144933.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/arbitrum-sepolia/20231214_144933/deploy-20231214_144933.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/base-testnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/base-testnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/base/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/base/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/base/20231102_232427/deploy-20231102_232427.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/base/20231102_232427/deploy-20231102_232427.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/celo-mainnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/celo-mainnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/celo-testnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/celo-testnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/goerli/20231102_231115/deploy-20231102_231115.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/goerli/20231102_231115/deploy-20231102_231115.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/mainnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/mainnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/mumbai/20231102_230817/deploy-20231102_230817.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/mumbai/20231102_230817/deploy-20231102_230817.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/optimism-goerli/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/optimism-goerli/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/optimism-mainnet/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/optimism-mainnet/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/optimism-mainnet/20231102_232427/deploy-20231102_232427.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/optimism-mainnet/20231102_232427/deploy-20231102_232427.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/optimism-sepolia/20240122_203113/deploy-20240122_203113.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/optimism-sepolia/20240122_203113/deploy-20240122_203113.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/polygon/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/polygon/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployQVSimple/sepolia/20231102_231334/deploy-20231102_231334.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployQVSimple/sepolia/20231102_231334/deploy-20231102_231334.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-sepolia/20231214_143957/deploy-20231214_143957.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/arbitrum-sepolia/20231214_143957/deploy-20231214_143957.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/base-testnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/base-testnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/base/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/base/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/celo-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/celo-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/celo-testnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/celo-testnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/mumbai/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/mumbai/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/optimism-goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/optimism-goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/optimism-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/optimism-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/optimism-sepolia/20240122_203256/deploy-20240122_203256.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/optimism-sepolia/20240122_203256/deploy-20240122_203256.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/polygon/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/polygon/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPCommittee/sepolia/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPCommittee/sepolia/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/arbitrum-goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/arbitrum-goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/arbitrum-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/arbitrum-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/arbitrum-sepolia/20231214_144100/deploy-20231214_144100.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/arbitrum-sepolia/20231214_144100/deploy-20231214_144100.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/base-testnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/base-testnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/base/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/base/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/celo-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/celo-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/celo-testnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/celo-testnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/mumbai/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/mumbai/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/optimism-goerli/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/optimism-goerli/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/optimism-mainnet/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/optimism-mainnet/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/optimism-sepolia/20240122_203256/deploy-20240122_203256.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/optimism-sepolia/20240122_203256/deploy-20240122_203256.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/polygon/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/polygon/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/strategies/deployRFPSimple/sepolia/20231102_232742/deploy-20231102_232742.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/strategies/deployRFPSimple/sepolia/20231102_232742/deploy-20231102_232742.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/deployEraAllo/zkSyncMainnet/20240410_191731/deploy-20240410_191731.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/deployEraAllo/zkSyncMainnet/20240410_191731/deploy-20240410_191731.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/deployEraAllo/zkSyncTestnet/20240410_190338/deploy-20240410_190338.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/deployEraAllo/zkSyncTestnet/20240410_190338/deploy-20240410_190338.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/deployEraRegistry/zkSyncMainnet/20240410_191602/deploy-20240410_191602.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/deployEraRegistry/zkSyncMainnet/20240410_191602/deploy-20240410_191602.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/deployEraRegistry/zkSyncTestnet/20240410_185857/deploy-20240410_185857.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/deployEraRegistry/zkSyncTestnet/20240410_185857/deploy-20240410_185857.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncMainnet/20240517_120102/deploy-20240517_120102.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncMainnet/20240517_120102/deploy-20240517_120102.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncMainnet/20240521_153654/deploy-20240521_153654.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncMainnet/20240521_153654/deploy-20240521_153654.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncTestnet/20240517_115914/deploy-20240517_115914.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncTestnet/20240517_115914/deploy-20240517_115914.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncTestnet/20240521_153654/deploy-20240521_153654.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDGLFactory/zkSyncTestnet/20240521_153654/deploy-20240521_153654.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncMainnet/20240517_120102/deploy-20240517_120102.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncMainnet/20240517_120102/deploy-20240517_120102.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncMainnet/20240521_153654/deploy-20240521_153654.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncMainnet/20240521_153654/deploy-20240521_153654.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncTestnet/20240517_115914/deploy-20240517_115914.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncTestnet/20240517_115914/deploy-20240517_115914.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncTestnet/20240521_153654/deploy-20240521_153654.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/factory/deployDVMDTFactory/zkSyncTestnet/20240521_153654/deploy-20240521_153654.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_191846/deploy-20240410_191846.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_191846/deploy-20240410_191846.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_191939/deploy-20240410_191939.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_191939/deploy-20240410_191939.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_192036/deploy-20240410_192036.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_192036/deploy-20240410_192036.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_192204/deploy-20240410_192204.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncMainnet/20240410_192204/deploy-20240410_192204.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190539/deploy-20240410_190539.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190539/deploy-20240410_190539.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190715/deploy-20240410_190715.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190715/deploy-20240410_190715.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190852/deploy-20240410_190852.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_190852/deploy-20240410_190852.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_191024/deploy-20240410_191024.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrants/zkSyncTestnet/20240410_191024/deploy-20240410_191024.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrantsLite/zkSyncMainnet/20240513_165104/deploy-20240513_165104.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrantsLite/zkSyncMainnet/20240513_165104/deploy-20240513_165104.log -------------------------------------------------------------------------------- /reports/deployment-logs/zksync/strategies/deployEraDirectGrantsLite/zkSyncTestnet/20240513_164936/deploy-20240513_164936.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/deployment-logs/zksync/strategies/deployEraDirectGrantsLite/zkSyncTestnet/20240513_164936/deploy-20240513_164936.log -------------------------------------------------------------------------------- /reports/drainer/drain.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/drainer/drain.log -------------------------------------------------------------------------------- /reports/gas-report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/gas-report.log -------------------------------------------------------------------------------- /reports/gas-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/reports/gas-table.md -------------------------------------------------------------------------------- /scripts/config/allo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/config/allo.config.ts -------------------------------------------------------------------------------- /scripts/config/common.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/config/common.config.ts -------------------------------------------------------------------------------- /scripts/config/registry.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/config/registry.config.ts -------------------------------------------------------------------------------- /scripts/config/strategies.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/config/strategies.config.ts -------------------------------------------------------------------------------- /scripts/core/deployAllNetworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/deployAllNetworks.sh -------------------------------------------------------------------------------- /scripts/core/deployAllo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/deployAllo.ts -------------------------------------------------------------------------------- /scripts/core/deployAlloV1ToV2ProfileMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/deployAlloV1ToV2ProfileMigration.ts -------------------------------------------------------------------------------- /scripts/core/deployContractFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/deployContractFactory.ts -------------------------------------------------------------------------------- /scripts/core/deployRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/deployRegistry.ts -------------------------------------------------------------------------------- /scripts/core/reports/deployment-logs/core/deploy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/reports/deployment-logs/core/deploy.log -------------------------------------------------------------------------------- /scripts/core/transferProxyAdminOwnership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/transferProxyAdminOwnership.ts -------------------------------------------------------------------------------- /scripts/core/upgrades/proposeUpgradeAllo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/upgrades/proposeUpgradeAllo.ts -------------------------------------------------------------------------------- /scripts/core/upgrades/proposeUpgradeRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/upgrades/proposeUpgradeRegistry.ts -------------------------------------------------------------------------------- /scripts/core/upgrades/upgradeAllNetworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/upgrades/upgradeAllNetworks.sh -------------------------------------------------------------------------------- /scripts/core/upgrades/upgradeAllo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/upgrades/upgradeAllo.ts -------------------------------------------------------------------------------- /scripts/core/upgrades/upgradeRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/core/upgrades/upgradeRegistry.ts -------------------------------------------------------------------------------- /scripts/deployments/DGLFactory.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/DGLFactory.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/DVMDTFactory.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/DVMDTFactory.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/allo.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/allo.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/contractFactory.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/contractFactory.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/directallocationstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/directallocationstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/directgrantslitestrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/directgrantslitestrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/directgrantssimplestrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/directgrantssimplestrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/donationvotingmerkledistributiondirecttransferstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/donationvotingmerkledistributiondirecttransferstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/donationvotingmerkledistributionvaultstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/donationvotingmerkledistributionvaultstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/easyretrofundingstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/easyretrofundingstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/ltiphedgeygovernorstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/ltiphedgeygovernorstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/ltiphedgeystrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/ltiphedgeystrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/qvimpactstreamstrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/qvimpactstreamstrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/qvsimplestrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/qvsimplestrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/registry.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/registry.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/rfpcommitteestrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/rfpcommitteestrategy.deployment.json -------------------------------------------------------------------------------- /scripts/deployments/rfpsimplestrategy.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/deployments/rfpsimplestrategy.deployment.json -------------------------------------------------------------------------------- /scripts/other/drainAllNetworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/other/drainAllNetworks.sh -------------------------------------------------------------------------------- /scripts/other/walletDrainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/other/walletDrainer.ts -------------------------------------------------------------------------------- /scripts/strategies/addToCloneableStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/addToCloneableStrategies.ts -------------------------------------------------------------------------------- /scripts/strategies/deployDirectAllocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployDirectAllocation.ts -------------------------------------------------------------------------------- /scripts/strategies/deployDirectGrants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployDirectGrants.ts -------------------------------------------------------------------------------- /scripts/strategies/deployDirectGrantsLite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployDirectGrantsLite.ts -------------------------------------------------------------------------------- /scripts/strategies/deployDonationVotingMerkleDistributionDirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployDonationVotingMerkleDistributionDirect.ts -------------------------------------------------------------------------------- /scripts/strategies/deployDonationVotingMerkleDistributionVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployDonationVotingMerkleDistributionVault.ts -------------------------------------------------------------------------------- /scripts/strategies/deployEasyRetroFunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployEasyRetroFunding.ts -------------------------------------------------------------------------------- /scripts/strategies/deployImpactStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployImpactStream.ts -------------------------------------------------------------------------------- /scripts/strategies/deployLTIPHedgeyGovernorStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployLTIPHedgeyGovernorStrategy.ts -------------------------------------------------------------------------------- /scripts/strategies/deployLTIPHedgeyStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployLTIPHedgeyStrategy.ts -------------------------------------------------------------------------------- /scripts/strategies/deployQVSimple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployQVSimple.ts -------------------------------------------------------------------------------- /scripts/strategies/deployRFPCommittee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployRFPCommittee.ts -------------------------------------------------------------------------------- /scripts/strategies/deployRFPSimple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployRFPSimple.ts -------------------------------------------------------------------------------- /scripts/strategies/deployStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/strategies/deployStrategies.ts -------------------------------------------------------------------------------- /scripts/test/createDirectAllocationPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/test/createDirectAllocationPool.ts -------------------------------------------------------------------------------- /scripts/test/createPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/test/createPool.ts -------------------------------------------------------------------------------- /scripts/test/createProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/test/createProfile.ts -------------------------------------------------------------------------------- /scripts/test/superfluid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/test/superfluid.ts -------------------------------------------------------------------------------- /scripts/utils/Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/utils/Validator.ts -------------------------------------------------------------------------------- /scripts/utils/deployProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/utils/deployProxy.ts -------------------------------------------------------------------------------- /scripts/utils/scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/scripts/utils/scripts.ts -------------------------------------------------------------------------------- /test/foundry/core/Allo.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/core/Allo.t.sol -------------------------------------------------------------------------------- /test/foundry/core/Anchor.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/core/Anchor.t.sol -------------------------------------------------------------------------------- /test/foundry/core/Registry.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/core/Registry.t.sol -------------------------------------------------------------------------------- /test/foundry/factory/ContractFactory.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/factory/ContractFactory.t.sol -------------------------------------------------------------------------------- /test/foundry/fuzz/QVSimpleStrategyFuzz.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/fuzz/QVSimpleStrategyFuzz.t.sol -------------------------------------------------------------------------------- /test/foundry/shared/Accounts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/Accounts.sol -------------------------------------------------------------------------------- /test/foundry/shared/AlloSetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/AlloSetup.sol -------------------------------------------------------------------------------- /test/foundry/shared/EventSetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/EventSetup.sol -------------------------------------------------------------------------------- /test/foundry/shared/HedgeySetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/HedgeySetup.sol -------------------------------------------------------------------------------- /test/foundry/shared/RegistrySetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/RegistrySetup.sol -------------------------------------------------------------------------------- /test/foundry/shared/StrategySetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/StrategySetup.sol -------------------------------------------------------------------------------- /test/foundry/shared/Time.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/shared/Time.sol -------------------------------------------------------------------------------- /test/foundry/strategies/BaseStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/BaseStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DirectAllocation.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DirectAllocation.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DirectGrantsLite.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DirectGrantsLite.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DirectGrantsSimpleStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DirectGrantsSimpleStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DonationVotingCustomRegistryStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DonationVotingCustomRegistryStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DonationVotingMerkleDistributionBase.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DonationVotingMerkleDistributionBase.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DonationVotingMerkleDistributionDirectTransferStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DonationVotingMerkleDistributionDirectTransferStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DonationVotingMerkleDistributionVaultStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DonationVotingMerkleDistributionVaultStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/DonationVotingStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/DonationVotingStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/EasyRFStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/EasyRFStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/HackathonQVStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/HackathonQVStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/LTIPHedgeyGovernanceStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/LTIPHedgeyGovernanceStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/LTIPHedgeyStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/LTIPHedgeyStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/LTIPSimpleStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/LTIPSimpleStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/MicroGrantsBaseStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/MicroGrantsBaseStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/MicroGrantsGovStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/MicroGrantsGovStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/MicroGrantsHatsStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/MicroGrantsHatsStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/MicroGrantsStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/MicroGrantsStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/ProportionalPayoutStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/ProportionalPayoutStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/QVBaseStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/QVBaseStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/QVGovernanceERC20Votes.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/QVGovernanceERC20Votes.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/QVImpactStreamStrategyTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/QVImpactStreamStrategyTest.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/QVNftTieredStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/QVNftTieredStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/QVSimpleStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/QVSimpleStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/RFPCommitteeStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/RFPCommitteeStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/RFPSimpleStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/RFPSimpleStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/SQFSuperFluidStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/SQFSuperFluidStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/SimpleProjectRegistry.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/SimpleProjectRegistry.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/WrappedVotingNftMintStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/WrappedVotingNftMintStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/hedgey/HedgeyRFPCommitteeStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/hedgey/HedgeyRFPCommitteeStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/hedgey/HedgeySetup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/hedgey/HedgeySetup.sol -------------------------------------------------------------------------------- /test/foundry/strategies/sablier-v2/LockupBase.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/sablier-v2/LockupBase.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/sablier-v2/LockupDynamicStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/sablier-v2/LockupDynamicStrategy.t.sol -------------------------------------------------------------------------------- /test/foundry/strategies/sablier-v2/LockupLinearStrategy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/foundry/strategies/sablier-v2/LockupLinearStrategy.t.sol -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/invariant/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/utils/DonationVotingMerkleDistributionBaseMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/DonationVotingMerkleDistributionBaseMock.sol -------------------------------------------------------------------------------- /test/utils/GasHelpers.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/GasHelpers.sol -------------------------------------------------------------------------------- /test/utils/MockEAS.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockEAS.sol -------------------------------------------------------------------------------- /test/utils/MockERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockERC20.sol -------------------------------------------------------------------------------- /test/utils/MockERC20Permit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockERC20Permit.sol -------------------------------------------------------------------------------- /test/utils/MockERC20PermitDAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockERC20PermitDAI.sol -------------------------------------------------------------------------------- /test/utils/MockERC20Vote.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockERC20Vote.sol -------------------------------------------------------------------------------- /test/utils/MockERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockERC721.sol -------------------------------------------------------------------------------- /test/utils/MockHats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockHats.sol -------------------------------------------------------------------------------- /test/utils/MockMicroGrantsBaseStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockMicroGrantsBaseStrategy.sol -------------------------------------------------------------------------------- /test/utils/MockPassportDecoder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockPassportDecoder.sol -------------------------------------------------------------------------------- /test/utils/MockRevertingReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockRevertingReceiver.sol -------------------------------------------------------------------------------- /test/utils/MockStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockStrategy.sol -------------------------------------------------------------------------------- /test/utils/MockUniversalGov.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/MockUniversalGov.sol -------------------------------------------------------------------------------- /test/utils/Permit2Mock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/Permit2Mock.sol -------------------------------------------------------------------------------- /test/utils/PermitSigUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/PermitSigUtils.sol -------------------------------------------------------------------------------- /test/utils/PermitSigUtilsDAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/PermitSigUtilsDAI.sol -------------------------------------------------------------------------------- /test/utils/QVBaseStrategyTestMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/QVBaseStrategyTestMock.sol -------------------------------------------------------------------------------- /test/utils/TestStrategy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/TestStrategy.sol -------------------------------------------------------------------------------- /test/utils/TestUtilities.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/test/utils/TestUtilities.sol -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allo-protocol/allo-v2/HEAD/tsconfig.json --------------------------------------------------------------------------------