├── .env.example ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bounty-ticket.md │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── coveralls.yml │ ├── linter.yml │ └── slither.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .openzeppelin ├── goerli.json ├── optimism.json ├── unknown-11155111.json ├── unknown-11155420.json └── unknown-420.json ├── .prettierrc ├── .solcover.js ├── .solhint.json ├── LICENSE-APACHE ├── LICENSE.md ├── README.md ├── abi ├── @solidstate │ └── contracts │ │ ├── access │ │ └── ownable │ │ │ ├── IOwnable.sol │ │ │ └── IOwnable.json │ │ │ ├── IOwnableInternal.sol │ │ │ └── IOwnableInternal.json │ │ │ ├── ISafeOwnable.sol │ │ │ └── ISafeOwnable.json │ │ │ ├── ISafeOwnableInternal.sol │ │ │ └── ISafeOwnableInternal.json │ │ │ ├── Ownable.sol │ │ │ └── Ownable.json │ │ │ ├── OwnableInternal.sol │ │ │ └── OwnableInternal.json │ │ │ ├── SafeOwnable.sol │ │ │ └── SafeOwnable.json │ │ │ └── SafeOwnableInternal.sol │ │ │ └── SafeOwnableInternal.json │ │ ├── interfaces │ │ ├── IERC165.sol │ │ │ └── IERC165.json │ │ ├── IERC173.sol │ │ │ └── IERC173.json │ │ ├── IERC173Internal.sol │ │ │ └── IERC173Internal.json │ │ ├── IERC721.sol │ │ │ └── IERC721.json │ │ ├── IERC721Internal.sol │ │ │ └── IERC721Internal.json │ │ └── IERC721Receiver.sol │ │ │ └── IERC721Receiver.json │ │ ├── introspection │ │ └── ERC165.sol │ │ │ └── ERC165.json │ │ ├── proxy │ │ ├── IProxy.sol │ │ │ └── IProxy.json │ │ ├── Proxy.sol │ │ │ └── Proxy.json │ │ └── diamond │ │ │ ├── ISolidStateDiamond.sol │ │ │ └── ISolidStateDiamond.json │ │ │ ├── SolidStateDiamond.sol │ │ │ └── SolidStateDiamond.json │ │ │ ├── base │ │ │ ├── DiamondBase.sol │ │ │ │ └── DiamondBase.json │ │ │ ├── DiamondBaseStorage.sol │ │ │ │ └── DiamondBaseStorage.json │ │ │ └── IDiamondBase.sol │ │ │ │ └── IDiamondBase.json │ │ │ ├── readable │ │ │ ├── DiamondReadable.sol │ │ │ │ └── DiamondReadable.json │ │ │ └── IDiamondReadable.sol │ │ │ │ └── IDiamondReadable.json │ │ │ └── writable │ │ │ ├── DiamondWritable.sol │ │ │ └── DiamondWritable.json │ │ │ └── IDiamondWritable.sol │ │ │ └── IDiamondWritable.json │ │ └── token │ │ └── ERC721 │ │ ├── base │ │ ├── ERC721Base.sol │ │ │ └── ERC721Base.json │ │ ├── ERC721BaseInternal.sol │ │ │ └── ERC721BaseInternal.json │ │ └── IERC721Base.sol │ │ │ └── IERC721Base.json │ │ └── metadata │ │ ├── ERC721Metadata.sol │ │ └── ERC721Metadata.json │ │ ├── ERC721MetadataInternal.sol │ │ └── ERC721MetadataInternal.json │ │ └── IERC721Metadata.sol │ │ └── IERC721Metadata.json ├── @superfluid-finance │ └── ethereum-contracts │ │ └── contracts │ │ ├── apps │ │ └── SuperAppBase.sol │ │ │ └── SuperAppBase.json │ │ └── interfaces │ │ ├── agreements │ │ ├── IConstantFlowAgreementV1.sol │ │ │ └── IConstantFlowAgreementV1.json │ │ ├── IInstantDistributionAgreementV1.sol │ │ │ └── IInstantDistributionAgreementV1.json │ │ └── gdav1 │ │ │ ├── IGeneralDistributionAgreementV1.sol │ │ │ └── IGeneralDistributionAgreementV1.json │ │ │ ├── IPoolAdminNFT.sol │ │ │ └── IPoolAdminNFT.json │ │ │ ├── IPoolMemberNFT.sol │ │ │ └── IPoolMemberNFT.json │ │ │ ├── IPoolNFTBase.sol │ │ │ └── IPoolNFTBase.json │ │ │ └── ISuperfluidPool.sol │ │ │ └── ISuperfluidPool.json │ │ ├── superfluid │ │ ├── IConstantInflowNFT.sol │ │ │ └── IConstantInflowNFT.json │ │ ├── IConstantOutflowNFT.sol │ │ │ └── IConstantOutflowNFT.json │ │ ├── IFlowNFTBase.sol │ │ │ └── IFlowNFTBase.json │ │ ├── ISuperAgreement.sol │ │ │ └── ISuperAgreement.json │ │ ├── ISuperApp.sol │ │ │ └── ISuperApp.json │ │ ├── ISuperToken.sol │ │ │ └── ISuperToken.json │ │ ├── ISuperTokenFactory.sol │ │ │ └── ISuperTokenFactory.json │ │ ├── ISuperfluid.sol │ │ │ └── ISuperfluid.json │ │ ├── ISuperfluidGovernance.sol │ │ │ └── ISuperfluidGovernance.json │ │ └── ISuperfluidToken.sol │ │ │ └── ISuperfluidToken.json │ │ └── tokens │ │ └── ISETH.sol │ │ ├── ISETH.json │ │ └── ISETHCustom.json └── contracts │ ├── beacon-diamond │ └── BeaconDiamond.sol │ │ └── BeaconDiamond.json │ ├── beneficiary │ ├── BeneficiarySuperApp.sol │ │ └── BeneficiarySuperApp.json │ ├── interfaces │ │ └── ICFABeneficiary.sol │ │ │ └── ICFABeneficiary.json │ └── test │ │ └── BeneficiarySuperApp.test.sol │ │ ├── FuzzyBeneficiarySuperApp.json │ │ └── MockParamsStore.json │ ├── pco-license │ ├── PCOLicenseDiamond.sol │ │ └── PCOLicenseDiamond.json │ ├── facets │ │ ├── CFABasePCOFacet.sol │ │ │ └── CFABasePCOFacet.json │ │ ├── CFAPenaltyBidFacet.sol │ │ │ └── CFAPenaltyBidFacet.json │ │ ├── CFAReclaimerFacet.sol │ │ │ └── CFAReclaimerFacet.json │ │ └── test │ │ │ └── CFABasePCOFacet.test.sol │ │ │ └── TestableCFABasePCOFacet.json │ ├── interfaces │ │ ├── ICFABasePCO.sol │ │ │ └── ICFABasePCO.json │ │ ├── ICFAPenaltyBid.sol │ │ │ └── ICFAPenaltyBid.json │ │ ├── ICFAReclaimer.sol │ │ │ └── ICFAReclaimer.json │ │ └── IPCOLicenseDiamond.sol │ │ │ └── IPCOLicenseDiamond.json │ └── libraries │ │ ├── LibCFABasePCO.sol │ │ └── LibCFABasePCO.json │ │ └── LibCFAPenaltyBid.sol │ │ └── LibCFAPenaltyBid.json │ └── registry │ ├── RegistryDiamond.sol │ └── RegistryDiamond.json │ ├── facets │ ├── GeoWebParcelFacet.sol │ │ ├── GeoWebParcelFacetV1.json │ │ └── GeoWebParcelFacetV2.json │ ├── PCOERC721Facet.sol │ │ └── PCOERC721Facet.json │ ├── PCOLicenseClaimerFacet.sol │ │ ├── PCOLicenseClaimerFacetV1.json │ │ └── PCOLicenseClaimerFacetV2.json │ ├── PCOLicenseParamsFacet.sol │ │ └── PCOLicenseParamsFacet.json │ └── test │ │ ├── GeoWebParcelFacet.test.sol │ │ ├── FuzzyGeoWebParcelFacetV1.json │ │ ├── FuzzyGeoWebParcelFacetV2.json │ │ ├── TestableGeoWebParcelFacetV1.json │ │ └── TestableGeoWebParcelFacetV2.json │ │ ├── PCOERC721Facet.test.sol │ │ └── FuzzyPCOERC721Facet.json │ │ ├── PCOLicenseClaimerFacet.test.sol │ │ ├── FuzzyPCOLicenseClaimerFacetV1.json │ │ └── FuzzyPCOLicenseClaimerFacetV2.json │ │ └── PCOLicenseParamsFacet.test.sol │ │ └── FuzzyPCOLicenseParamsFacet.json │ ├── interfaces │ ├── IGeoWebParcel.sol │ │ ├── IGeoWebParcel.json │ │ ├── IGeoWebParcelV1.json │ │ └── IGeoWebParcelV2.json │ ├── IPCOERC721.sol │ │ └── IPCOERC721.json │ ├── IPCOLicenseClaimer.sol │ │ ├── IPCOLicenseClaimer.json │ │ ├── IPCOLicenseClaimerV1.json │ │ └── IPCOLicenseClaimerV2.json │ ├── IPCOLicenseParamsStore.sol │ │ └── IPCOLicenseParamsStore.json │ └── IRegistryDiamond.sol │ │ └── IRegistryDiamond.json │ └── libraries │ ├── LibGeoWebCoordinate.sol │ └── LibGeoWebCoordinate.json │ ├── LibGeoWebParcel.sol │ └── LibGeoWebParcel.json │ └── test │ └── LibGeoWebCoordinate.test.sol │ ├── LibGeoWebCoordinatePathTest.json │ └── LibGeoWebCoordinateTest.json ├── contracts ├── beacon-diamond │ ├── BeaconDiamond.sol │ └── libraries │ │ └── LibBeaconDiamond.sol ├── beneficiary │ ├── BeneficiarySuperApp.sol │ ├── interfaces │ │ └── ICFABeneficiary.sol │ └── test │ │ └── BeneficiarySuperApp.test.sol ├── pco-license │ ├── PCOLicenseDiamond.sol │ ├── facets │ │ ├── CFABasePCOFacet.sol │ │ ├── CFAPenaltyBidFacet.sol │ │ ├── CFAReclaimerFacet.sol │ │ └── test │ │ │ └── CFABasePCOFacet.test.sol │ ├── interfaces │ │ ├── ICFABasePCO.sol │ │ ├── ICFAPenaltyBid.sol │ │ ├── ICFAReclaimer.sol │ │ └── IPCOLicenseDiamond.sol │ └── libraries │ │ ├── LibCFABasePCO.sol │ │ └── LibCFAPenaltyBid.sol └── registry │ ├── RegistryDiamond.sol │ ├── facets │ ├── GeoWebParcelFacet.sol │ ├── PCOERC721Facet.sol │ ├── PCOLicenseClaimerFacet.sol │ ├── PCOLicenseParamsFacet.sol │ └── test │ │ ├── GeoWebParcelFacet.test.sol │ │ ├── PCOERC721Facet.test.sol │ │ ├── PCOLicenseClaimerFacet.test.sol │ │ └── PCOLicenseParamsFacet.test.sol │ ├── interfaces │ ├── IGeoWebParcel.sol │ ├── IPCOERC721.sol │ ├── IPCOLicenseClaimer.sol │ ├── IPCOLicenseParamsStore.sol │ └── IRegistryDiamond.sol │ └── libraries │ ├── LibGeoWebCoordinate.sol │ ├── LibGeoWebParcel.sol │ ├── LibGeoWebParcelV2.sol │ ├── LibPCOLicenseClaimer.sol │ ├── LibPCOLicenseParams.sol │ └── test │ └── LibGeoWebCoordinate.test.sol ├── docs ├── .gitkeep ├── actions.png ├── architecture.png └── index.md ├── echidna-config.yaml ├── flake.lock ├── flake.nix ├── hardhat.config.ts ├── mythril-solc.json ├── package.json ├── scripts ├── deploy.ts └── libraries │ └── diamond.js ├── slither.config.json ├── src └── index.ts ├── tasks ├── bid-example.ts ├── claim_example.ts ├── estimate_minting_gas.ts ├── initialize-defender.ts ├── initialize-eoa.ts ├── upgrade-beneficiary.ts └── upgrades │ ├── 4_1_0.ts │ ├── 4_1_1.ts │ ├── 4_1_5.ts │ ├── 4_2_0.optimism.ts │ ├── 4_2_0.ts │ └── 4_3_0.ts ├── test ├── .gitkeep ├── beneficiary │ └── BeneficiarySuperApp.ts ├── pco-license │ ├── .DS_Store │ ├── CFABasePCO.fixture.ts │ ├── CFABasePCOFacet.ts │ ├── CFAPenaltyBid.fixture.ts │ ├── CFAPenaltyBidFacet.ts │ └── CFAReclaimerFacet.ts ├── registry │ ├── GeoWebParcelFacet.ts │ ├── GeoWebParcelFacetV2.ts │ ├── LibGeoWebCoordinate.ts │ ├── PCOERC721Facet.ts │ ├── PCOLicenseClaimer.fixture.ts │ ├── PCOLicenseClaimerFacet.ts │ ├── PCOLicenseClaimerFacetV2.ts │ ├── PCOLicenseClaimerV2.fixture.ts │ └── PCOLicenseParamsFacet.ts ├── shared.ts └── upgrades │ └── 4_1_0.ts ├── tsconfig.build.json ├── tsconfig.json ├── typechain-types ├── IERC721.ts ├── ISuperfluid.ts ├── PCOLicenseParamsFacet.ts └── factories │ ├── CFABasePCOFacet__factory.ts │ ├── CFAPenaltyBidFacet__factory.ts │ ├── PCOLicenseDiamond__factory.ts │ ├── PCOLicenseParamsFacet__factory.ts │ └── RegistryDiamond__factory.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bounty-ticket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/ISSUE_TEMPLATE/bounty-ticket.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/workflows/coveralls.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/slither.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.github/workflows/slither.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/** 3 | !package.json 4 | !README.md 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.18.1 2 | -------------------------------------------------------------------------------- /.openzeppelin/goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.openzeppelin/goerli.json -------------------------------------------------------------------------------- /.openzeppelin/optimism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.openzeppelin/optimism.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-11155111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.openzeppelin/unknown-11155111.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-11155420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.openzeppelin/unknown-11155420.json -------------------------------------------------------------------------------- /.openzeppelin/unknown-420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.openzeppelin/unknown-420.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.solcover.js -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/.solhint.json -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/README.md -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/IOwnable.sol/IOwnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/IOwnable.sol/IOwnable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/IOwnableInternal.sol/IOwnableInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/IOwnableInternal.sol/IOwnableInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/ISafeOwnable.sol/ISafeOwnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/ISafeOwnable.sol/ISafeOwnable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/ISafeOwnableInternal.sol/ISafeOwnableInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/ISafeOwnableInternal.sol/ISafeOwnableInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/Ownable.sol/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/Ownable.sol/Ownable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/OwnableInternal.sol/OwnableInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/OwnableInternal.sol/OwnableInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/SafeOwnable.sol/SafeOwnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/SafeOwnable.sol/SafeOwnable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/access/ownable/SafeOwnableInternal.sol/SafeOwnableInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/access/ownable/SafeOwnableInternal.sol/SafeOwnableInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC165.sol/IERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC165.sol/IERC165.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC173.sol/IERC173.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC173.sol/IERC173.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC173Internal.sol/IERC173Internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC173Internal.sol/IERC173Internal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC721.sol/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC721.sol/IERC721.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC721Internal.sol/IERC721Internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC721Internal.sol/IERC721Internal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/interfaces/IERC721Receiver.sol/IERC721Receiver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/interfaces/IERC721Receiver.sol/IERC721Receiver.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/introspection/ERC165.sol/ERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/introspection/ERC165.sol/ERC165.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/IProxy.sol/IProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/IProxy.sol/IProxy.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/Proxy.sol/Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/Proxy.sol/Proxy.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/ISolidStateDiamond.sol/ISolidStateDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/ISolidStateDiamond.sol/ISolidStateDiamond.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/SolidStateDiamond.sol/SolidStateDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/SolidStateDiamond.sol/SolidStateDiamond.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/base/DiamondBase.sol/DiamondBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/base/DiamondBase.sol/DiamondBase.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/base/DiamondBaseStorage.sol/DiamondBaseStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/base/DiamondBaseStorage.sol/DiamondBaseStorage.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/base/IDiamondBase.sol/IDiamondBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/base/IDiamondBase.sol/IDiamondBase.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/readable/DiamondReadable.sol/DiamondReadable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/readable/DiamondReadable.sol/DiamondReadable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/readable/IDiamondReadable.sol/IDiamondReadable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/readable/IDiamondReadable.sol/IDiamondReadable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/writable/DiamondWritable.sol/DiamondWritable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/writable/DiamondWritable.sol/DiamondWritable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/proxy/diamond/writable/IDiamondWritable.sol/IDiamondWritable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/proxy/diamond/writable/IDiamondWritable.sol/IDiamondWritable.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/base/ERC721Base.sol/ERC721Base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/base/ERC721Base.sol/ERC721Base.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/base/ERC721BaseInternal.sol/ERC721BaseInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/base/ERC721BaseInternal.sol/ERC721BaseInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/base/IERC721Base.sol/IERC721Base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/base/IERC721Base.sol/IERC721Base.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/metadata/ERC721Metadata.sol/ERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/metadata/ERC721Metadata.sol/ERC721Metadata.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/metadata/ERC721MetadataInternal.sol/ERC721MetadataInternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/metadata/ERC721MetadataInternal.sol/ERC721MetadataInternal.json -------------------------------------------------------------------------------- /abi/@solidstate/contracts/token/ERC721/metadata/IERC721Metadata.sol/IERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@solidstate/contracts/token/ERC721/metadata/IERC721Metadata.sol/IERC721Metadata.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/apps/SuperAppBase.sol/SuperAppBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/apps/SuperAppBase.sol/SuperAppBase.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1.sol/IConstantFlowAgreementV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1.sol/IConstantFlowAgreementV1.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1.sol/IInstantDistributionAgreementV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1.sol/IInstantDistributionAgreementV1.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IGeneralDistributionAgreementV1.sol/IGeneralDistributionAgreementV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IGeneralDistributionAgreementV1.sol/IGeneralDistributionAgreementV1.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolAdminNFT.sol/IPoolAdminNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolAdminNFT.sol/IPoolAdminNFT.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolMemberNFT.sol/IPoolMemberNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolMemberNFT.sol/IPoolMemberNFT.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolNFTBase.sol/IPoolNFTBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/IPoolNFTBase.sol/IPoolNFTBase.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/ISuperfluidPool.sol/ISuperfluidPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/gdav1/ISuperfluidPool.sol/ISuperfluidPool.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT.sol/IConstantInflowNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT.sol/IConstantInflowNFT.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT.sol/IConstantOutflowNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT.sol/IConstantOutflowNFT.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase.sol/IFlowNFTBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase.sol/IFlowNFTBase.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement.sol/ISuperAgreement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement.sol/ISuperAgreement.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp.sol/ISuperApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp.sol/ISuperApp.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken.sol/ISuperToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken.sol/ISuperToken.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory.sol/ISuperTokenFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory.sol/ISuperTokenFactory.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid.sol/ISuperfluid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid.sol/ISuperfluid.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance.sol/ISuperfluidGovernance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance.sol/ISuperfluidGovernance.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken.sol/ISuperfluidToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken.sol/ISuperfluidToken.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ISETH.sol/ISETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ISETH.sol/ISETH.json -------------------------------------------------------------------------------- /abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ISETH.sol/ISETHCustom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ISETH.sol/ISETHCustom.json -------------------------------------------------------------------------------- /abi/contracts/beacon-diamond/BeaconDiamond.sol/BeaconDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/beacon-diamond/BeaconDiamond.sol/BeaconDiamond.json -------------------------------------------------------------------------------- /abi/contracts/beneficiary/BeneficiarySuperApp.sol/BeneficiarySuperApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/beneficiary/BeneficiarySuperApp.sol/BeneficiarySuperApp.json -------------------------------------------------------------------------------- /abi/contracts/beneficiary/interfaces/ICFABeneficiary.sol/ICFABeneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/beneficiary/interfaces/ICFABeneficiary.sol/ICFABeneficiary.json -------------------------------------------------------------------------------- /abi/contracts/beneficiary/test/BeneficiarySuperApp.test.sol/FuzzyBeneficiarySuperApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/beneficiary/test/BeneficiarySuperApp.test.sol/FuzzyBeneficiarySuperApp.json -------------------------------------------------------------------------------- /abi/contracts/beneficiary/test/BeneficiarySuperApp.test.sol/MockParamsStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/beneficiary/test/BeneficiarySuperApp.test.sol/MockParamsStore.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/PCOLicenseDiamond.sol/PCOLicenseDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/PCOLicenseDiamond.sol/PCOLicenseDiamond.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/facets/CFABasePCOFacet.sol/CFABasePCOFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/facets/CFABasePCOFacet.sol/CFABasePCOFacet.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/facets/CFAPenaltyBidFacet.sol/CFAPenaltyBidFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/facets/CFAPenaltyBidFacet.sol/CFAPenaltyBidFacet.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/facets/CFAReclaimerFacet.sol/CFAReclaimerFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/facets/CFAReclaimerFacet.sol/CFAReclaimerFacet.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/facets/test/CFABasePCOFacet.test.sol/TestableCFABasePCOFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/facets/test/CFABasePCOFacet.test.sol/TestableCFABasePCOFacet.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/interfaces/ICFABasePCO.sol/ICFABasePCO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/interfaces/ICFABasePCO.sol/ICFABasePCO.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/interfaces/ICFAPenaltyBid.sol/ICFAPenaltyBid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/interfaces/ICFAPenaltyBid.sol/ICFAPenaltyBid.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/interfaces/ICFAReclaimer.sol/ICFAReclaimer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/interfaces/ICFAReclaimer.sol/ICFAReclaimer.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/interfaces/IPCOLicenseDiamond.sol/IPCOLicenseDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/interfaces/IPCOLicenseDiamond.sol/IPCOLicenseDiamond.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/libraries/LibCFABasePCO.sol/LibCFABasePCO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/libraries/LibCFABasePCO.sol/LibCFABasePCO.json -------------------------------------------------------------------------------- /abi/contracts/pco-license/libraries/LibCFAPenaltyBid.sol/LibCFAPenaltyBid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/pco-license/libraries/LibCFAPenaltyBid.sol/LibCFAPenaltyBid.json -------------------------------------------------------------------------------- /abi/contracts/registry/RegistryDiamond.sol/RegistryDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/RegistryDiamond.sol/RegistryDiamond.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/GeoWebParcelFacet.sol/GeoWebParcelFacetV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/GeoWebParcelFacet.sol/GeoWebParcelFacetV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/GeoWebParcelFacet.sol/GeoWebParcelFacetV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/GeoWebParcelFacet.sol/GeoWebParcelFacetV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/PCOERC721Facet.sol/PCOERC721Facet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/PCOERC721Facet.sol/PCOERC721Facet.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/PCOLicenseClaimerFacet.sol/PCOLicenseClaimerFacetV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/PCOLicenseClaimerFacet.sol/PCOLicenseClaimerFacetV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/PCOLicenseClaimerFacet.sol/PCOLicenseClaimerFacetV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/PCOLicenseClaimerFacet.sol/PCOLicenseClaimerFacetV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/PCOLicenseParamsFacet.sol/PCOLicenseParamsFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/PCOLicenseParamsFacet.sol/PCOLicenseParamsFacet.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/FuzzyGeoWebParcelFacetV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/FuzzyGeoWebParcelFacetV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/FuzzyGeoWebParcelFacetV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/FuzzyGeoWebParcelFacetV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/TestableGeoWebParcelFacetV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/TestableGeoWebParcelFacetV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/TestableGeoWebParcelFacetV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/GeoWebParcelFacet.test.sol/TestableGeoWebParcelFacetV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/PCOERC721Facet.test.sol/FuzzyPCOERC721Facet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/PCOERC721Facet.test.sol/FuzzyPCOERC721Facet.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol/FuzzyPCOLicenseClaimerFacetV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol/FuzzyPCOLicenseClaimerFacetV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol/FuzzyPCOLicenseClaimerFacetV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol/FuzzyPCOLicenseClaimerFacetV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/facets/test/PCOLicenseParamsFacet.test.sol/FuzzyPCOLicenseParamsFacet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/facets/test/PCOLicenseParamsFacet.test.sol/FuzzyPCOLicenseParamsFacet.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcel.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcelV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcelV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcelV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IGeoWebParcel.sol/IGeoWebParcelV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IPCOERC721.sol/IPCOERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IPCOERC721.sol/IPCOERC721.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimer.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimerV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimerV1.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimerV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IPCOLicenseClaimer.sol/IPCOLicenseClaimerV2.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IPCOLicenseParamsStore.sol/IPCOLicenseParamsStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IPCOLicenseParamsStore.sol/IPCOLicenseParamsStore.json -------------------------------------------------------------------------------- /abi/contracts/registry/interfaces/IRegistryDiamond.sol/IRegistryDiamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/interfaces/IRegistryDiamond.sol/IRegistryDiamond.json -------------------------------------------------------------------------------- /abi/contracts/registry/libraries/LibGeoWebCoordinate.sol/LibGeoWebCoordinate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/libraries/LibGeoWebCoordinate.sol/LibGeoWebCoordinate.json -------------------------------------------------------------------------------- /abi/contracts/registry/libraries/LibGeoWebParcel.sol/LibGeoWebParcel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/libraries/LibGeoWebParcel.sol/LibGeoWebParcel.json -------------------------------------------------------------------------------- /abi/contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol/LibGeoWebCoordinatePathTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol/LibGeoWebCoordinatePathTest.json -------------------------------------------------------------------------------- /abi/contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol/LibGeoWebCoordinateTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/abi/contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol/LibGeoWebCoordinateTest.json -------------------------------------------------------------------------------- /contracts/beacon-diamond/BeaconDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/beacon-diamond/BeaconDiamond.sol -------------------------------------------------------------------------------- /contracts/beacon-diamond/libraries/LibBeaconDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/beacon-diamond/libraries/LibBeaconDiamond.sol -------------------------------------------------------------------------------- /contracts/beneficiary/BeneficiarySuperApp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/beneficiary/BeneficiarySuperApp.sol -------------------------------------------------------------------------------- /contracts/beneficiary/interfaces/ICFABeneficiary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/beneficiary/interfaces/ICFABeneficiary.sol -------------------------------------------------------------------------------- /contracts/beneficiary/test/BeneficiarySuperApp.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/beneficiary/test/BeneficiarySuperApp.test.sol -------------------------------------------------------------------------------- /contracts/pco-license/PCOLicenseDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/PCOLicenseDiamond.sol -------------------------------------------------------------------------------- /contracts/pco-license/facets/CFABasePCOFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/facets/CFABasePCOFacet.sol -------------------------------------------------------------------------------- /contracts/pco-license/facets/CFAPenaltyBidFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/facets/CFAPenaltyBidFacet.sol -------------------------------------------------------------------------------- /contracts/pco-license/facets/CFAReclaimerFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/facets/CFAReclaimerFacet.sol -------------------------------------------------------------------------------- /contracts/pco-license/facets/test/CFABasePCOFacet.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/facets/test/CFABasePCOFacet.test.sol -------------------------------------------------------------------------------- /contracts/pco-license/interfaces/ICFABasePCO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/interfaces/ICFABasePCO.sol -------------------------------------------------------------------------------- /contracts/pco-license/interfaces/ICFAPenaltyBid.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/interfaces/ICFAPenaltyBid.sol -------------------------------------------------------------------------------- /contracts/pco-license/interfaces/ICFAReclaimer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/interfaces/ICFAReclaimer.sol -------------------------------------------------------------------------------- /contracts/pco-license/interfaces/IPCOLicenseDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/interfaces/IPCOLicenseDiamond.sol -------------------------------------------------------------------------------- /contracts/pco-license/libraries/LibCFABasePCO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/libraries/LibCFABasePCO.sol -------------------------------------------------------------------------------- /contracts/pco-license/libraries/LibCFAPenaltyBid.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/pco-license/libraries/LibCFAPenaltyBid.sol -------------------------------------------------------------------------------- /contracts/registry/RegistryDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/RegistryDiamond.sol -------------------------------------------------------------------------------- /contracts/registry/facets/GeoWebParcelFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/GeoWebParcelFacet.sol -------------------------------------------------------------------------------- /contracts/registry/facets/PCOERC721Facet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/PCOERC721Facet.sol -------------------------------------------------------------------------------- /contracts/registry/facets/PCOLicenseClaimerFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/PCOLicenseClaimerFacet.sol -------------------------------------------------------------------------------- /contracts/registry/facets/PCOLicenseParamsFacet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/PCOLicenseParamsFacet.sol -------------------------------------------------------------------------------- /contracts/registry/facets/test/GeoWebParcelFacet.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/test/GeoWebParcelFacet.test.sol -------------------------------------------------------------------------------- /contracts/registry/facets/test/PCOERC721Facet.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/test/PCOERC721Facet.test.sol -------------------------------------------------------------------------------- /contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/test/PCOLicenseClaimerFacet.test.sol -------------------------------------------------------------------------------- /contracts/registry/facets/test/PCOLicenseParamsFacet.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/facets/test/PCOLicenseParamsFacet.test.sol -------------------------------------------------------------------------------- /contracts/registry/interfaces/IGeoWebParcel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/interfaces/IGeoWebParcel.sol -------------------------------------------------------------------------------- /contracts/registry/interfaces/IPCOERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/interfaces/IPCOERC721.sol -------------------------------------------------------------------------------- /contracts/registry/interfaces/IPCOLicenseClaimer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/interfaces/IPCOLicenseClaimer.sol -------------------------------------------------------------------------------- /contracts/registry/interfaces/IPCOLicenseParamsStore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/interfaces/IPCOLicenseParamsStore.sol -------------------------------------------------------------------------------- /contracts/registry/interfaces/IRegistryDiamond.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/interfaces/IRegistryDiamond.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/LibGeoWebCoordinate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/LibGeoWebCoordinate.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/LibGeoWebParcel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/LibGeoWebParcel.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/LibGeoWebParcelV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/LibGeoWebParcelV2.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/LibPCOLicenseClaimer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/LibPCOLicenseClaimer.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/LibPCOLicenseParams.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/LibPCOLicenseParams.sol -------------------------------------------------------------------------------- /contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/contracts/registry/libraries/test/LibGeoWebCoordinate.test.sol -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/docs/actions.png -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/docs/index.md -------------------------------------------------------------------------------- /echidna-config.yaml: -------------------------------------------------------------------------------- 1 | cryticArgs: ["--solc-remaps", "@=node_modules/@"] 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/flake.nix -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /mythril-solc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/mythril-solc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /scripts/libraries/diamond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/scripts/libraries/diamond.js -------------------------------------------------------------------------------- /slither.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/slither.config.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/src/index.ts -------------------------------------------------------------------------------- /tasks/bid-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/bid-example.ts -------------------------------------------------------------------------------- /tasks/claim_example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/claim_example.ts -------------------------------------------------------------------------------- /tasks/estimate_minting_gas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/estimate_minting_gas.ts -------------------------------------------------------------------------------- /tasks/initialize-defender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/initialize-defender.ts -------------------------------------------------------------------------------- /tasks/initialize-eoa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/initialize-eoa.ts -------------------------------------------------------------------------------- /tasks/upgrade-beneficiary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrade-beneficiary.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_1_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_1_0.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_1_1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_1_1.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_1_5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_1_5.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_2_0.optimism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_2_0.optimism.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_2_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_2_0.ts -------------------------------------------------------------------------------- /tasks/upgrades/4_3_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tasks/upgrades/4_3_0.ts -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/beneficiary/BeneficiarySuperApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/beneficiary/BeneficiarySuperApp.ts -------------------------------------------------------------------------------- /test/pco-license/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/.DS_Store -------------------------------------------------------------------------------- /test/pco-license/CFABasePCO.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/CFABasePCO.fixture.ts -------------------------------------------------------------------------------- /test/pco-license/CFABasePCOFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/CFABasePCOFacet.ts -------------------------------------------------------------------------------- /test/pco-license/CFAPenaltyBid.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/CFAPenaltyBid.fixture.ts -------------------------------------------------------------------------------- /test/pco-license/CFAPenaltyBidFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/CFAPenaltyBidFacet.ts -------------------------------------------------------------------------------- /test/pco-license/CFAReclaimerFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/pco-license/CFAReclaimerFacet.ts -------------------------------------------------------------------------------- /test/registry/GeoWebParcelFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/GeoWebParcelFacet.ts -------------------------------------------------------------------------------- /test/registry/GeoWebParcelFacetV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/GeoWebParcelFacetV2.ts -------------------------------------------------------------------------------- /test/registry/LibGeoWebCoordinate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/LibGeoWebCoordinate.ts -------------------------------------------------------------------------------- /test/registry/PCOERC721Facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOERC721Facet.ts -------------------------------------------------------------------------------- /test/registry/PCOLicenseClaimer.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOLicenseClaimer.fixture.ts -------------------------------------------------------------------------------- /test/registry/PCOLicenseClaimerFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOLicenseClaimerFacet.ts -------------------------------------------------------------------------------- /test/registry/PCOLicenseClaimerFacetV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOLicenseClaimerFacetV2.ts -------------------------------------------------------------------------------- /test/registry/PCOLicenseClaimerV2.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOLicenseClaimerV2.fixture.ts -------------------------------------------------------------------------------- /test/registry/PCOLicenseParamsFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/registry/PCOLicenseParamsFacet.ts -------------------------------------------------------------------------------- /test/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/shared.ts -------------------------------------------------------------------------------- /test/upgrades/4_1_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/test/upgrades/4_1_0.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typechain-types/IERC721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/IERC721.ts -------------------------------------------------------------------------------- /typechain-types/ISuperfluid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/ISuperfluid.ts -------------------------------------------------------------------------------- /typechain-types/PCOLicenseParamsFacet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/PCOLicenseParamsFacet.ts -------------------------------------------------------------------------------- /typechain-types/factories/CFABasePCOFacet__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/factories/CFABasePCOFacet__factory.ts -------------------------------------------------------------------------------- /typechain-types/factories/CFAPenaltyBidFacet__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/factories/CFAPenaltyBidFacet__factory.ts -------------------------------------------------------------------------------- /typechain-types/factories/PCOLicenseDiamond__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/factories/PCOLicenseDiamond__factory.ts -------------------------------------------------------------------------------- /typechain-types/factories/PCOLicenseParamsFacet__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/factories/PCOLicenseParamsFacet__factory.ts -------------------------------------------------------------------------------- /typechain-types/factories/RegistryDiamond__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/typechain-types/factories/RegistryDiamond__factory.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geo-Web-Project/core-contracts/HEAD/yarn.lock --------------------------------------------------------------------------------