├── .circleci ├── config.yml ├── continue_config.yml ├── new_branch.yml ├── nightly.yml ├── scripts │ ├── build_and_publish_docker_images.sh │ ├── deploy_to_gcp.sh │ ├── publish_multiarch_images.sh │ ├── publish_to_npm.sh │ └── test_new_chain_support.sh ├── ssh.config └── test-chains-regularly.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ └── self-hosted-instance.md ├── PULL_REQUEST_TEMPLATE │ └── release.md └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .nvmrc ├── .nxignore ├── .prettierrc ├── .vscode ├── launch.json └── tasks.json ├── CLAUDE.md ├── FUNDING.json ├── LICENSE ├── README.md ├── codecov.yml ├── lerna.json ├── nx.json ├── package.json ├── packages ├── bytecode-utils │ ├── .gitignore │ ├── .mocharc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── bytecode.ts │ ├── test │ │ ├── bytecode.spec.ts │ │ └── bytecodes │ │ │ ├── bzzr1.hex │ │ │ ├── experimental.hex │ │ │ ├── ipfs.hex │ │ │ ├── vyper-cbor-no-array.hex │ │ │ ├── vyper-integrity.hex │ │ │ ├── vyper-no-auxdata-length.hex │ │ │ ├── vyper-no-integrity.hex │ │ │ ├── without0x.hex │ │ │ ├── withoutauxdata.hex │ │ │ └── wrong.hex │ ├── tsconfig.json │ └── tsconfig.module.json ├── compilers-types │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── package.json │ ├── src │ │ ├── CompilationTypes.ts │ │ ├── SolidityTypes.ts │ │ ├── VyperTypes.ts │ │ └── index.ts │ ├── tsconfig.json │ └── tsconfig.module.json ├── compilers │ ├── .gitignore │ ├── .mocharc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── common.ts │ │ │ ├── compilerWorker.ts │ │ │ ├── solidityCompiler.ts │ │ │ └── vyperCompiler.ts │ │ └── logger.ts │ ├── test │ │ ├── solidityCompiler.spec.ts │ │ ├── utils │ │ │ └── pre-v0.4.0-input.json │ │ └── vyperCompiler.spec.ts │ ├── tsconfig.json │ └── tsconfig.module.json └── lib-sourcify │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── hardhat.config.js │ ├── package.json │ ├── src │ ├── Compilation │ │ ├── AbstractCompilation.ts │ │ ├── CompilationTypes.ts │ │ ├── PreRunCompilation.ts │ │ ├── SolidityCompilation.ts │ │ ├── VyperCompilation.ts │ │ └── auxdataUtils.ts │ ├── SourcifyChain │ │ ├── SourcifyChain.ts │ │ └── SourcifyChainTypes.ts │ ├── SourcifyLibError.ts │ ├── Validation │ │ ├── SolidityMetadataContract.ts │ │ ├── ValidationTypes.ts │ │ ├── fetchUtils.ts │ │ ├── hashFunctions │ │ │ ├── ipfsHash.ts │ │ │ └── swarmHash.ts │ │ ├── processFiles.ts │ │ ├── variationsUtils.ts │ │ └── zipUtils.ts │ ├── Verification │ │ ├── Transformations.ts │ │ ├── Verification.ts │ │ └── VerificationTypes.ts │ ├── index.ts │ ├── logger.ts │ └── utils │ │ ├── etherscan │ │ ├── EtherscanTypes.ts │ │ └── etherscan-util.ts │ │ └── utils.ts │ ├── test │ ├── Compilation │ │ ├── SolidityCompilation.spec.ts │ │ └── VyperCompilation.spec.ts │ ├── SourcifyChain.spec.ts │ ├── Validation │ │ ├── SolidityMetadataContract.spec.ts │ │ ├── fetchUtils.spec.ts │ │ ├── processFiles.spec.ts │ │ └── zipUtils.spec.ts │ ├── Verification │ │ └── Verification.spec.ts │ ├── hardhat-network-helper.ts │ ├── sources │ │ ├── AbstractCreationBytecodeAttack │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── FFF.sol │ │ ├── CBORInTheMiddle │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── DeploymentHelper.sol │ │ ├── CBORInTheMiddleFactory │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── @openzeppelin │ │ │ │ └── contracts │ │ │ │ │ ├── interfaces │ │ │ │ │ └── draft-IERC1822.sol │ │ │ │ │ ├── proxy │ │ │ │ │ ├── ERC1967 │ │ │ │ │ │ ├── ERC1967Proxy.sol │ │ │ │ │ │ └── ERC1967Utils.sol │ │ │ │ │ ├── Proxy.sol │ │ │ │ │ ├── beacon │ │ │ │ │ │ └── IBeacon.sol │ │ │ │ │ └── utils │ │ │ │ │ │ ├── Initializable.sol │ │ │ │ │ │ └── UUPSUpgradeable.sol │ │ │ │ │ ├── token │ │ │ │ │ ├── ERC1155 │ │ │ │ │ │ └── IERC1155Receiver.sol │ │ │ │ │ └── ERC721 │ │ │ │ │ │ └── IERC721Receiver.sol │ │ │ │ │ └── utils │ │ │ │ │ ├── Address.sol │ │ │ │ │ ├── Create2.sol │ │ │ │ │ ├── StorageSlot.sol │ │ │ │ │ ├── Strings.sol │ │ │ │ │ ├── cryptography │ │ │ │ │ ├── ECDSA.sol │ │ │ │ │ └── MessageHashUtils.sol │ │ │ │ │ ├── introspection │ │ │ │ │ └── IERC165.sol │ │ │ │ │ └── math │ │ │ │ │ ├── Math.sol │ │ │ │ │ └── SignedMath.sol │ │ │ │ └── contracts │ │ │ │ ├── core │ │ │ │ ├── BaseAccount.sol │ │ │ │ ├── Helpers.sol │ │ │ │ └── UserOperationLib.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IAccount.sol │ │ │ │ ├── IAggregator.sol │ │ │ │ ├── IEntryPoint.sol │ │ │ │ ├── INonceManager.sol │ │ │ │ ├── IStakeManager.sol │ │ │ │ └── PackedUserOperation.sol │ │ │ │ └── samples │ │ │ │ ├── SimpleAccount.sol │ │ │ │ ├── SimpleAccountFactory.sol │ │ │ │ └── callback │ │ │ │ └── TokenCallbackHandler.sol │ │ ├── CallProtectionForLibraries │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Ballot.sol │ │ ├── CallProtectionForLibrariesViaIR │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Ballot.sol │ │ ├── Constructor │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Constructor.sol │ │ ├── ConstructorModified │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── ConstructorModified.sol │ │ ├── ContractWithVariatedSources │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── TheGraphGreeter.sol │ │ ├── Create2 │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Wallet.sol │ │ ├── ExtraFilesBytecodeMismatch │ │ │ ├── artifact.json │ │ │ ├── complete_sources │ │ │ │ ├── @openzeppelin │ │ │ │ │ └── contracts │ │ │ │ │ │ └── token │ │ │ │ │ │ └── ERC20 │ │ │ │ │ │ └── IERC20.sol │ │ │ │ ├── contracts │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── BaseUniswapAdapter.sol │ │ │ │ │ │ ├── FlashLiquidationAdapter.sol │ │ │ │ │ │ ├── UniswapLiquiditySwapAdapter.sol │ │ │ │ │ │ ├── UniswapRepayAdapter.sol │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── IBaseUniswapAdapter.sol │ │ │ │ │ ├── dependencies │ │ │ │ │ │ └── openzeppelin │ │ │ │ │ │ │ ├── contracts │ │ │ │ │ │ │ ├── Address.sol │ │ │ │ │ │ │ ├── Context.sol │ │ │ │ │ │ │ ├── ERC20.sol │ │ │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ │ │ ├── IERC20Detailed.sol │ │ │ │ │ │ │ ├── Ownable.sol │ │ │ │ │ │ │ ├── SafeERC20.sol │ │ │ │ │ │ │ └── SafeMath.sol │ │ │ │ │ │ │ └── upgradeability │ │ │ │ │ │ │ ├── AdminUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── BaseAdminUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── BaseUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── InitializableAdminUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── InitializableUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── Proxy.sol │ │ │ │ │ │ │ └── UpgradeabilityProxy.sol │ │ │ │ │ ├── deployments │ │ │ │ │ │ ├── ATokensAndRatesHelper.sol │ │ │ │ │ │ ├── StableAndVariableTokensHelper.sol │ │ │ │ │ │ └── StringLib.sol │ │ │ │ │ ├── flashloan │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ └── FlashLoanReceiverBase.sol │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── IFlashLoanReceiver.sol │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── IAToken.sol │ │ │ │ │ │ ├── IAaveIncentivesController.sol │ │ │ │ │ │ ├── IChainlinkAggregator.sol │ │ │ │ │ │ ├── ICreditDelegationToken.sol │ │ │ │ │ │ ├── IDelegationToken.sol │ │ │ │ │ │ ├── IERC20WithPermit.sol │ │ │ │ │ │ ├── IExchangeAdapter.sol │ │ │ │ │ │ ├── IInitializableAToken.sol │ │ │ │ │ │ ├── IInitializableDebtToken.sol │ │ │ │ │ │ ├── ILendingPool.sol │ │ │ │ │ │ ├── ILendingPoolAddressesProvider.sol │ │ │ │ │ │ ├── ILendingPoolAddressesProviderRegistry.sol │ │ │ │ │ │ ├── ILendingPoolCollateralManager.sol │ │ │ │ │ │ ├── ILendingPoolConfigurator.sol │ │ │ │ │ │ ├── ILendingRateOracle.sol │ │ │ │ │ │ ├── IPriceOracleGetter.sol │ │ │ │ │ │ ├── IReserveInterestRateStrategy.sol │ │ │ │ │ │ ├── IScaledBalanceToken.sol │ │ │ │ │ │ ├── IStableDebtToken.sol │ │ │ │ │ │ ├── IUniswapV2Router02.sol │ │ │ │ │ │ └── IVariableDebtToken.sol │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── AaveOracle.sol │ │ │ │ │ │ ├── AaveProtocolDataProvider.sol │ │ │ │ │ │ ├── UiPoolDataProvider.sol │ │ │ │ │ │ ├── WETHGateway.sol │ │ │ │ │ │ ├── WalletBalanceProvider.sol │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ ├── IUiPoolDataProvider.sol │ │ │ │ │ │ │ ├── IWETH.sol │ │ │ │ │ │ │ └── IWETHGateway.sol │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── flashloan │ │ │ │ │ │ │ └── MockFlashLoanReceiver.sol │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ └── LendingRateOracle.sol │ │ │ │ │ │ ├── swap │ │ │ │ │ │ │ └── MockUniswapV2Router02.sol │ │ │ │ │ │ ├── tokens │ │ │ │ │ │ │ ├── MintableDelegationERC20.sol │ │ │ │ │ │ │ └── MintableERC20.sol │ │ │ │ │ │ └── upgradeability │ │ │ │ │ │ │ ├── MockAToken.sol │ │ │ │ │ │ │ ├── MockStableDebtToken.sol │ │ │ │ │ │ │ └── MockVariableDebtToken.sol │ │ │ │ │ └── protocol │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── LendingPoolAddressesProvider.sol │ │ │ │ │ │ └── LendingPoolAddressesProviderRegistry.sol │ │ │ │ │ │ ├── lendingpool │ │ │ │ │ │ ├── DefaultReserveInterestRateStrategy.sol │ │ │ │ │ │ ├── LendingPool.sol │ │ │ │ │ │ ├── LendingPoolCollateralManager.sol │ │ │ │ │ │ ├── LendingPoolConfigurator.sol │ │ │ │ │ │ └── LendingPoolStorage.sol │ │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── aave-upgradeability │ │ │ │ │ │ │ ├── BaseImmutableAdminUpgradeabilityProxy.sol │ │ │ │ │ │ │ ├── InitializableImmutableAdminUpgradeabilityProxy.sol │ │ │ │ │ │ │ └── VersionedInitializable.sol │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── ReserveConfiguration.sol │ │ │ │ │ │ │ └── UserConfiguration.sol │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── Errors.sol │ │ │ │ │ │ │ └── Helpers.sol │ │ │ │ │ │ ├── logic │ │ │ │ │ │ │ ├── GenericLogic.sol │ │ │ │ │ │ │ ├── ReserveLogic.sol │ │ │ │ │ │ │ └── ValidationLogic.sol │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ ├── MathUtils.sol │ │ │ │ │ │ │ ├── PercentageMath.sol │ │ │ │ │ │ │ └── WadRayMath.sol │ │ │ │ │ │ └── types │ │ │ │ │ │ │ └── DataTypes.sol │ │ │ │ │ │ └── tokenization │ │ │ │ │ │ ├── AToken.sol │ │ │ │ │ │ ├── DelegationAwareAToken.sol │ │ │ │ │ │ ├── IncentivizedERC20.sol │ │ │ │ │ │ ├── StableDebtToken.sol │ │ │ │ │ │ ├── VariableDebtToken.sol │ │ │ │ │ │ └── base │ │ │ │ │ │ └── DebtTokenBase.sol │ │ │ │ └── hardhat │ │ │ │ │ └── console.sol │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── Address.sol │ │ │ │ ├── DataTypes.sol │ │ │ │ ├── Errors.sol │ │ │ │ ├── GenericLogic.sol │ │ │ │ ├── Helpers.sol │ │ │ │ ├── IAToken.sol │ │ │ │ ├── IAaveIncentivesController.sol │ │ │ │ ├── IERC20.sol │ │ │ │ ├── IFlashLoanReceiver.sol │ │ │ │ ├── IInitializableAToken.sol │ │ │ │ ├── IInitializableDebtToken.sol │ │ │ │ ├── ILendingPool.sol │ │ │ │ ├── ILendingPoolAddressesProvider.sol │ │ │ │ ├── IPriceOracleGetter.sol │ │ │ │ ├── IReserveInterestRateStrategy.sol │ │ │ │ ├── IScaledBalanceToken.sol │ │ │ │ ├── IStableDebtToken.sol │ │ │ │ ├── IVariableDebtToken.sol │ │ │ │ ├── LendingPool.sol │ │ │ │ ├── LendingPoolStorage.sol │ │ │ │ ├── MathUtils.sol │ │ │ │ ├── PercentageMath.sol │ │ │ │ ├── ReserveConfiguration.sol │ │ │ │ ├── ReserveLogic.sol │ │ │ │ ├── SafeERC20.sol │ │ │ │ ├── SafeMath.sol │ │ │ │ ├── UserConfiguration.sol │ │ │ │ ├── ValidationLogic.sol │ │ │ │ ├── VersionedInitializable.sol │ │ │ │ └── WadRayMath.sol │ │ ├── FactoryImmutable │ │ │ ├── Child │ │ │ │ ├── artifact.json │ │ │ │ ├── metadata.json │ │ │ │ └── sources │ │ │ │ │ └── FactoryTest.sol │ │ │ └── Factory │ │ │ │ ├── artifact.json │ │ │ │ ├── metadata.json │ │ │ │ └── sources │ │ │ │ └── FactoryTest.sol │ │ ├── FactoryImmutableWithoutConstrArg │ │ │ ├── Child │ │ │ │ ├── artifact.json │ │ │ │ ├── metadata.json │ │ │ │ └── sources │ │ │ │ │ └── FactoryTest3.sol │ │ │ └── Factory │ │ │ │ ├── artifact.json │ │ │ │ ├── metadata.json │ │ │ │ └── sources │ │ │ │ └── FactoryTest3.sol │ │ ├── MetadataRewriting │ │ │ ├── contract │ │ │ │ ├── artifact.json │ │ │ │ ├── metadata.json │ │ │ │ └── sources │ │ │ │ │ ├── EIP1967Admin.sol │ │ │ │ │ └── EIP1967Proxy.sol │ │ │ └── correct-metadata.json │ │ ├── MultipleEqualAuxdatas │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── lib │ │ │ │ ├── forge-std │ │ │ │ │ └── src │ │ │ │ │ │ └── console.sol │ │ │ │ └── openzeppelin-contracts │ │ │ │ │ └── contracts │ │ │ │ │ ├── access │ │ │ │ │ └── Ownable.sol │ │ │ │ │ ├── token │ │ │ │ │ └── ERC721 │ │ │ │ │ │ ├── ERC721.sol │ │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ │ ├── IERC721Receiver.sol │ │ │ │ │ │ └── extensions │ │ │ │ │ │ └── IERC721Metadata.sol │ │ │ │ │ └── utils │ │ │ │ │ ├── Address.sol │ │ │ │ │ ├── Context.sol │ │ │ │ │ ├── Strings.sol │ │ │ │ │ └── introspection │ │ │ │ │ ├── ERC165.sol │ │ │ │ │ └── IERC165.sol │ │ │ │ └── src │ │ │ │ ├── PeterTraits.sol │ │ │ │ ├── PetersMain.sol │ │ │ │ ├── TraitCategory.sol │ │ │ │ ├── common │ │ │ │ ├── Division.sol │ │ │ │ ├── Random.sol │ │ │ │ ├── RandomCtx.sol │ │ │ │ └── Utils.sol │ │ │ │ ├── interfaces │ │ │ │ ├── IPeterStorage.sol │ │ │ │ ├── ITraitStorage.sol │ │ │ │ └── TBABoilerplate │ │ │ │ │ ├── IAccountImplementation.sol │ │ │ │ │ ├── IAccountProxy.sol │ │ │ │ │ └── IRegistry.sol │ │ │ │ └── renderers │ │ │ │ ├── BodyRenderer.sol │ │ │ │ ├── RenderHelper.sol │ │ │ │ └── TraitsRenderer.sol │ │ ├── Nightly │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── C.sol │ │ ├── NoAuxdata │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── NoAuxdata.sol │ │ ├── NoImmutableField │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── NoImmutable.sol │ │ ├── Storage │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Storage.sol │ │ ├── StorageInliner │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Storage.sol │ │ ├── StorageModified │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── StorageModified.sol │ │ ├── StorageUnsortedMetadata │ │ │ └── metadata.json │ │ ├── StorageViaIR │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Storage.sol │ │ ├── UsingLibrary │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── UsingLibrary.sol │ │ ├── ViaIRUnoptimizedMismatch │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── A │ │ ├── Vyper │ │ │ ├── constructorArguments_0_3_9 │ │ │ │ ├── artifact.json │ │ │ │ └── test.vy │ │ │ ├── testcontract │ │ │ │ ├── artifact.json │ │ │ │ ├── test.vy │ │ │ │ └── wrongAuxdata │ │ │ │ │ └── artifact.json │ │ │ ├── testcontract2 │ │ │ │ ├── artifact.json │ │ │ │ └── test.vy │ │ │ └── withImmutables │ │ │ │ ├── artifact.json │ │ │ │ └── test.vy │ │ ├── WithImmutables │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── WithImmutables.sol │ │ ├── WithImmutablesCreationBytecodeAttack │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── WithImmutables.sol │ │ ├── WithMultipleAuxdatas │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── ERC20Token.sol │ │ │ │ ├── ERC721Token.sol │ │ │ │ └── Factory.sol │ │ ├── WrongMetadata │ │ │ ├── SimplyLog.json │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── SimplyLog.sol │ │ └── pre-0.4.11 │ │ │ ├── Multidrop.sol │ │ │ └── Simple.sol │ ├── utils.ts │ ├── utils │ │ └── etherscan-util.spec.ts │ └── validationFiles │ │ └── files │ │ ├── hardhat-output │ │ └── output.json │ │ ├── metadata-multiple-targets.json │ │ ├── metadata-with-content-altered.json │ │ ├── metadata-with-content.json │ │ ├── multiple-altered │ │ ├── Escrow.sol │ │ ├── Main.sol │ │ ├── Owned.sol │ │ ├── Savings.sol │ │ ├── metadata.json │ │ └── provableAPI_0.6.sol │ │ ├── multiple │ │ ├── Escrow.sol │ │ ├── Main.sol │ │ ├── Owned.sol │ │ ├── Savings.sol │ │ ├── metadata.json │ │ └── provableAPI_0.6.sol │ │ ├── single-add-trailing-n │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-add-trailing-rn │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-altered-metadata │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-altered │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-keep-original │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-remove-trailing-n │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-remove-trailing-rn │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-replace-with-n │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single-replace-with-rn │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── single │ │ ├── 1_Storage.sol │ │ └── metadata.json │ │ ├── truffle-example-missing-source.zip │ │ ├── truffle-example-missing-source │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── contracts │ │ │ ├── ConvertLib.sol │ │ │ └── Migrations.sol │ │ ├── migrations │ │ │ ├── 1_initial_migration.js │ │ │ └── 2_deploy_contracts.js │ │ ├── test │ │ │ ├── TestMetaCoin.sol │ │ │ └── metacoin.js │ │ └── truffle-config.js │ │ ├── truffle-example-missing-source2.zip │ │ ├── truffle-example-with-macosx.zip │ │ ├── truffle-example.zip │ │ └── truffle-example │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── contracts │ │ ├── ConvertLib.sol │ │ ├── MetaCoin.sol │ │ └── Migrations.sol │ │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ │ ├── test │ │ ├── TestMetaCoin.sol │ │ └── metacoin.js │ │ └── truffle-config.js │ ├── tsconfig.json │ └── tsconfig.module.json ├── renovate.json ├── scripts ├── .env.example ├── check-s3-backup.mjs ├── delete-sourcify-match.ts ├── partial_matches_cleanup.sh ├── release │ ├── git_utils.sh │ ├── logging_utils.sh │ ├── main.sh │ ├── release.sh │ └── release_data_utils.sh ├── rename_repov2_sol_extension.sh ├── updateChains.mjs └── verify-massively.mjs ├── services ├── 4byte │ ├── .env.example │ ├── .env.test │ ├── .mocharc.json │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── src │ │ ├── FourByteServer.ts │ │ ├── SignatureDatabase.ts │ │ ├── api │ │ │ ├── handlers.ts │ │ │ └── validation.ts │ │ ├── cli.ts │ │ ├── logger.ts │ │ ├── openapi.yaml │ │ └── utils │ │ │ ├── canonical-signatures.json │ │ │ ├── database-util.ts │ │ │ └── signature-util.ts │ ├── test │ │ ├── docker-compose.yml │ │ ├── helpers │ │ │ └── FourByteServerFixture.ts │ │ ├── integration │ │ │ ├── 4bytes-api.spec.ts │ │ │ ├── bulkLongSignatures.csv │ │ │ └── bulkLongSignatures.spec.ts │ │ ├── load-env.js │ │ └── unit │ │ │ └── utils │ │ │ └── signature-util.spec.ts │ └── tsconfig.json ├── database │ ├── .env.template │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── docker-compose.yml │ ├── dune │ │ ├── DuneDataClient.ts │ │ ├── DuneTableClient.ts │ │ ├── README.md │ │ ├── SourcifyDuneSyncClient.ts │ │ ├── fetchRows.ts │ │ ├── formatRows.ts │ │ └── index.ts │ ├── massive-replace-script │ │ ├── README.md │ │ ├── config-constructor-arguments-transformation.js │ │ ├── config-replace-creation-information.js │ │ ├── config-replace-metadata.js │ │ └── massive-replace-script.ts │ ├── migrations │ │ ├── 20250722133557_sourcify.sql │ │ ├── 20250828092603_add_signature_tables.sql │ │ ├── 20250922140427_optimize_signature_search.sql │ │ ├── 20250922141802_signature_stats_materialized_view.sql │ │ ├── 20251009141621_add_external_verification.sql │ │ └── 20251101120000_add_code_first_75_index.sql │ ├── package.json │ ├── pg-types.ts │ ├── schema-updates │ │ └── post-v0-to-v1-upgrade.mjs │ ├── scripts.mjs │ ├── scripts │ │ ├── ContractVerifier.mjs │ │ ├── backfill-creation.mjs │ │ └── logger.js │ ├── sourcify-database.sql │ └── tsconfig.json ├── monitor │ ├── .dockerignore │ ├── .env.template │ ├── .mocharc.json │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── chains-dev.json │ ├── hardhat.config.js │ ├── monitorChains.json │ ├── package.json │ ├── src │ │ ├── ChainMonitor.ts │ │ ├── DecentralizedStorageFetcher.ts │ │ ├── GatewayFetcher.ts │ │ ├── Monitor.ts │ │ ├── PendingContract.ts │ │ ├── defaultConfig.js │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── loggerServer.ts │ │ ├── types.ts │ │ └── util.ts │ ├── test │ │ ├── Monitor.spec.ts │ │ ├── hardhat-network-helper.ts │ │ ├── helpers.ts │ │ ├── sources │ │ │ └── Storage │ │ │ │ ├── 1_Storage.json │ │ │ │ ├── 1_Storage.metadata.json │ │ │ │ └── 1_Storage.sol │ │ └── testLogger.ts │ └── tsconfig.json └── server │ ├── .env.dev │ ├── .env.docker │ ├── .env.test │ ├── .mocharc.json │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Dockerfile.debug │ ├── README.md │ ├── docker-compose.local.yml │ ├── docker-compose.yml │ ├── hardhat.config.js │ ├── package.json │ ├── src │ ├── apiv2.yaml │ ├── chains.json │ ├── common │ │ ├── async-context.ts │ │ ├── errors │ │ │ ├── BadGatewayError.ts │ │ │ ├── BadRequestError.ts │ │ │ ├── ConflictError.ts │ │ │ ├── ContractIsAlreadyBeingVerifiedError.ts │ │ │ ├── GenericErrorHandler.ts │ │ │ ├── InternalServerError.ts │ │ │ ├── NotFoundError.ts │ │ │ ├── PayloadTooLargeError.ts │ │ │ ├── TooManyRequests.ts │ │ │ └── index.ts │ │ ├── interfaces.ts │ │ └── logger.ts │ ├── config │ │ ├── config-init.js │ │ ├── default.js │ │ ├── local-test.js │ │ ├── master.js │ │ ├── migration.js │ │ └── staging.js │ ├── extra-chains.json │ ├── openapi.yaml │ ├── server │ │ ├── apiv1 │ │ │ ├── controllers.common.ts │ │ │ ├── deprecated.routes.ts │ │ │ ├── repository │ │ │ │ ├── check-all-by-addresses.stateless.paths.yaml │ │ │ │ ├── check-by-addresses.stateless.paths.yaml │ │ │ │ ├── get-contract-addresses-all.stateless.paths.yaml │ │ │ │ ├── get-contract-addresses-paginated-all.stateless.paths.yaml │ │ │ │ ├── get-contract-addresses-paginated-full.stateless.paths.yaml │ │ │ │ ├── get-contract-addresses-paginated-partial.stateless.paths.yaml │ │ │ │ ├── get-file-static.stateless.paths.yaml │ │ │ │ ├── get-file-tree-all.stateless.paths.yaml │ │ │ │ ├── get-file-tree-full.stateless.paths.yaml │ │ │ │ ├── get-source-files-all.stateless.paths.yaml │ │ │ │ ├── get-source-files-full.stateless.paths.yaml │ │ │ │ ├── repository.handlers.ts │ │ │ │ └── repository.routes.ts │ │ │ ├── routes.ts │ │ │ ├── testartifacts │ │ │ │ ├── testartifacts.handlers.ts │ │ │ │ └── testartifacts.routes.ts │ │ │ ├── validation.ts │ │ │ └── verification │ │ │ │ ├── etherscan │ │ │ │ ├── etherscan.routes.ts │ │ │ │ ├── session │ │ │ │ │ ├── etherscan.session.handlers.ts │ │ │ │ │ ├── etherscan.session.paths.yaml │ │ │ │ │ └── etherscan.session.routes.ts │ │ │ │ └── stateless │ │ │ │ │ ├── etherscan.stateless.handlers.ts │ │ │ │ │ ├── etherscan.stateless.paths.yaml │ │ │ │ │ └── etherscan.stateless.routes.ts │ │ │ │ ├── private │ │ │ │ ├── private.routes.ts │ │ │ │ └── stateless │ │ │ │ │ ├── customReplaceMethods.ts │ │ │ │ │ ├── private.stateless.handlers.ts │ │ │ │ │ ├── private.stateless.paths.yaml │ │ │ │ │ └── private.stateless.routes.ts │ │ │ │ ├── session-state │ │ │ │ ├── clear.session-state.paths.yaml │ │ │ │ ├── data.session-state.paths.yaml │ │ │ │ ├── input-contract.session-state.paths.yaml │ │ │ │ ├── input-files.session-state.paths.yaml │ │ │ │ ├── session-state.handlers.ts │ │ │ │ └── session-state.routes.ts │ │ │ │ ├── solc-json │ │ │ │ ├── session │ │ │ │ │ ├── solc-json.session.handlers.ts │ │ │ │ │ ├── solc-json.session.paths.yaml │ │ │ │ │ └── solc-json.session.routes.ts │ │ │ │ ├── solc-json.routes.ts │ │ │ │ └── stateless │ │ │ │ │ ├── solc-json.stateless.handlers.ts │ │ │ │ │ ├── solc-json.stateless.paths.yaml │ │ │ │ │ └── solc-json.stateless.routes.ts │ │ │ │ ├── verification.common.ts │ │ │ │ ├── verify │ │ │ │ ├── session │ │ │ │ │ ├── verify.session.handlers.ts │ │ │ │ │ ├── verify.session.paths.yaml │ │ │ │ │ └── verify.session.routes.ts │ │ │ │ ├── stateless │ │ │ │ │ ├── verify.stateless.handlers.ts │ │ │ │ │ ├── verify.stateless.paths.yaml │ │ │ │ │ └── verify.stateless.routes.ts │ │ │ │ └── verify.routes.ts │ │ │ │ └── vyper │ │ │ │ ├── stateless │ │ │ │ ├── vyper.stateless.handlers.ts │ │ │ │ ├── vyper.stateless.paths.yaml │ │ │ │ └── vyper.stateless.routes.ts │ │ │ │ └── vyper.routes.ts │ │ ├── apiv2 │ │ │ ├── errors.ts │ │ │ ├── jobs │ │ │ │ ├── jobs.handler.ts │ │ │ │ └── jobs.routes.ts │ │ │ ├── lookup │ │ │ │ ├── lookup.handlers.ts │ │ │ │ └── lookup.routes.ts │ │ │ ├── middlewares.ts │ │ │ ├── routes.ts │ │ │ └── verification │ │ │ │ ├── verification.handlers.ts │ │ │ │ └── verification.routes.ts │ │ ├── cli.ts │ │ ├── common.ts │ │ ├── routes.ts │ │ ├── server.ts │ │ ├── services │ │ │ ├── StorageService.ts │ │ │ ├── VerificationService.ts │ │ │ ├── compiler │ │ │ │ └── local │ │ │ │ │ ├── SolcLocal.ts │ │ │ │ │ └── VyperLocal.ts │ │ │ ├── services.ts │ │ │ ├── storageServices │ │ │ │ ├── AbstractDatabaseService.ts │ │ │ │ ├── AllianceDatabaseService.ts │ │ │ │ ├── EtherscanVerifyApiService.ts │ │ │ │ ├── RepositoryV1Service.ts │ │ │ │ ├── RepositoryV2Service.ts │ │ │ │ ├── S3RepositoryService.ts │ │ │ │ ├── SourcifyDatabaseService.ts │ │ │ │ └── identifiers.ts │ │ │ ├── utils │ │ │ │ ├── Database.ts │ │ │ │ ├── SourcifyChainMock.ts │ │ │ │ ├── contract-creation-util.ts │ │ │ │ ├── database-util.ts │ │ │ │ ├── etherscan-util.ts │ │ │ │ ├── parsing-util.ts │ │ │ │ ├── proxy-contract-util.ts │ │ │ │ ├── signature-util.ts │ │ │ │ └── util.ts │ │ │ └── workers │ │ │ │ ├── verificationWorker.ts │ │ │ │ ├── workerTypes.ts │ │ │ │ └── workerWrapper.js │ │ ├── session.ts │ │ └── types.ts │ ├── sourcify-chain-repository.ts │ ├── sourcify-chains-default.json │ ├── sourcify-chains-example.json │ └── sourcify-chains.ts │ ├── test │ ├── chains │ │ ├── chain-tests.spec.ts │ │ ├── deployContracts.ts │ │ ├── etherscan-instances.spec.ts │ │ └── sources │ │ │ ├── 1 │ │ │ ├── IERC20.sol │ │ │ ├── airdrop.sol │ │ │ └── metadata.json │ │ │ ├── 8 │ │ │ ├── GameItem.json │ │ │ └── GameItem.sol │ │ │ ├── 10 │ │ │ ├── file.sol │ │ │ └── metadata.json │ │ │ ├── 25 │ │ │ ├── metadata.json │ │ │ └── storage.sol │ │ │ ├── 40 │ │ │ ├── metadata.json │ │ │ └── nano.sol │ │ │ ├── 56 │ │ │ ├── Index.sol │ │ │ └── metadata.json │ │ │ ├── 57 │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── @openzeppelin │ │ │ │ └── contracts │ │ │ │ │ ├── access │ │ │ │ │ └── Ownable.sol │ │ │ │ │ ├── token │ │ │ │ │ └── ERC20 │ │ │ │ │ │ ├── ERC20.sol │ │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── ERC20Burnable.sol │ │ │ │ │ │ └── IERC20Metadata.sol │ │ │ │ │ └── utils │ │ │ │ │ └── Context.sol │ │ │ │ └── project │ │ │ │ └── contracts │ │ │ │ └── Token.sol │ │ │ ├── 82 │ │ │ ├── Storage.sol │ │ │ └── Storage_meta.json │ │ │ ├── 100 │ │ │ ├── metadata.json │ │ │ └── test.sol │ │ │ ├── 106 │ │ │ ├── ConvertLib.sol │ │ │ ├── MetaCoin.json │ │ │ └── MetaCoin.sol │ │ │ ├── 137 │ │ │ ├── metadata.json │ │ │ └── tokengenerator.sol │ │ │ ├── 252 │ │ │ ├── Storage.sol │ │ │ └── metadata.json │ │ │ ├── 288 │ │ │ ├── Storage.sol │ │ │ └── metadata.json │ │ │ ├── 5700 │ │ │ ├── TestToken.json │ │ │ └── Token.sol │ │ │ ├── 6119 │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ ├── @opengsn │ │ │ │ └── contracts │ │ │ │ │ └── src │ │ │ │ │ ├── ERC2771Recipient.sol │ │ │ │ │ └── interfaces │ │ │ │ │ └── IERC2771Recipient.sol │ │ │ │ ├── @openzeppelin │ │ │ │ └── contracts │ │ │ │ │ ├── access │ │ │ │ │ ├── AccessControl.sol │ │ │ │ │ └── IAccessControl.sol │ │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC165.sol │ │ │ │ │ ├── IERC4906.sol │ │ │ │ │ └── IERC721.sol │ │ │ │ │ ├── security │ │ │ │ │ └── Pausable.sol │ │ │ │ │ ├── token │ │ │ │ │ └── ERC721 │ │ │ │ │ │ ├── ERC721.sol │ │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ │ ├── IERC721Receiver.sol │ │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── ERC721Enumerable.sol │ │ │ │ │ │ ├── ERC721URIStorage.sol │ │ │ │ │ │ ├── IERC721Enumerable.sol │ │ │ │ │ │ └── IERC721Metadata.sol │ │ │ │ │ └── utils │ │ │ │ │ ├── Address.sol │ │ │ │ │ ├── Context.sol │ │ │ │ │ ├── Counters.sol │ │ │ │ │ ├── Strings.sol │ │ │ │ │ ├── introspection │ │ │ │ │ ├── ERC165.sol │ │ │ │ │ └── IERC165.sol │ │ │ │ │ └── math │ │ │ │ │ ├── Math.sol │ │ │ │ │ └── SignedMath.sol │ │ │ │ └── contracts │ │ │ │ ├── ERC4906.sol │ │ │ │ ├── IUPTNAddressValidator.sol │ │ │ │ └── UptnNFTsV1.sol │ │ │ ├── 42161 │ │ │ ├── BalanceFetcher.sol │ │ │ └── metadata.json │ │ │ ├── 42220 │ │ │ ├── FMTLOL.sol │ │ │ └── metadata.json │ │ │ ├── 43114 │ │ │ ├── FMTLOL.sol │ │ │ └── metadata.json │ │ │ ├── 62320 │ │ │ └── 0xdd5FFA1DF887D5A42931a746BaAd62574501A5Aa │ │ │ │ ├── AVA.sol │ │ │ │ └── metadata.json │ │ │ ├── 1313161554 │ │ │ ├── metadata.json │ │ │ └── weth.sol │ │ │ ├── 4216137055 │ │ │ ├── SigmaToken.json │ │ │ └── SigmaToken.sol │ │ │ ├── incrementer │ │ │ ├── Incrementer.sol │ │ │ └── metadata.json │ │ │ ├── multicall-avalabs │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Multicall3.sol │ │ │ ├── multicall-literal-contents │ │ │ └── multicall3.metadata.json │ │ │ ├── multicall-src │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── Multicall3.sol │ │ │ ├── multicall │ │ │ ├── Multicall3.sol │ │ │ └── multicall3.metadata.json │ │ │ └── shared │ │ │ ├── 1_Storage.json │ │ │ ├── 1_Storage.metadata.json │ │ │ └── 1_Storage.sol │ ├── docker-compose.yml │ ├── global-mocks.ts │ ├── helpers │ │ ├── LocalChainFixture.ts │ │ ├── S3ClientMock.ts │ │ ├── ServerFixture.ts │ │ ├── assertions.ts │ │ ├── common-tests.ts │ │ ├── etherscanInstanceContracts.json │ │ ├── etherscanResponseMocks.ts │ │ ├── helpers.ts │ │ └── mocks.ts │ ├── integration │ │ ├── apiv1 │ │ │ ├── repository-handlers │ │ │ │ ├── check-by-addresses.spec.ts │ │ │ │ └── files.spec.ts │ │ │ └── verification-handlers │ │ │ │ ├── etherscan.spec.ts │ │ │ │ ├── private.stateless.spec.ts │ │ │ │ ├── verify.session.spec.ts │ │ │ │ ├── verify.stateless.spec.ts │ │ │ │ └── vyper.stateless.spec.ts │ │ ├── apiv2 │ │ │ ├── jobs.spec.ts │ │ │ ├── lookup │ │ │ │ ├── all-chains.spec.ts │ │ │ │ ├── contract-details.spec.ts │ │ │ │ └── contracts-by-chain.spec.ts │ │ │ ├── v2.common.spec.ts │ │ │ └── verification │ │ │ │ ├── compiler-versions │ │ │ │ ├── 0.4.10+commit.f0d539ae.json │ │ │ │ ├── 0.4.11+commit.68ef5810.json │ │ │ │ ├── Storage.sol │ │ │ │ └── verify.compiler-versions.spec.ts │ │ │ │ ├── verify.etherscan.spec.ts │ │ │ │ ├── verify.json.spec.ts │ │ │ │ ├── verify.metadata.spec.ts │ │ │ │ └── verify.similarity.spec.ts │ │ ├── database.spec.ts │ │ ├── path-sanitization.spec.ts │ │ ├── status-handlers.spec.ts │ │ └── storageServices │ │ │ └── SourcifyDatabaseService.spec.ts │ ├── load-env.js │ ├── mocks │ │ └── ipfs │ │ │ ├── QmNgYBpa6rUqCnfeYXC9eqURstnsTwPFrAPEM6GtvpFxVW │ │ │ └── QmaFRC9ZtT7y3t9XNWCbDuMTEwKkyaQJzYFzw3NbeohSn5 │ ├── sources │ │ ├── all │ │ │ ├── Import.sol │ │ │ ├── Simple.sol │ │ │ ├── SimpleWithImport.sol │ │ │ ├── simple.meta.json │ │ │ └── simpleWithImport.meta.json │ │ ├── artifacts │ │ │ └── extraFilesBytecodeMismatch.json │ │ ├── compiler.json │ │ ├── contracts │ │ │ ├── ChildContract.sol │ │ │ ├── Import.sol │ │ │ ├── Library.sol │ │ │ ├── ParentContract.sol │ │ │ ├── Simple.sol │ │ │ └── SimpleWithImport.sol │ │ ├── fail │ │ │ ├── invalidMetadata.js │ │ │ ├── unparseableMetadata.js │ │ │ └── wrongCompiler.js │ │ ├── hardhat-output │ │ │ ├── extraFilesBytecodeMismatch-onlyMetadata.json │ │ │ ├── extraFilesBytecodeMismatch.json │ │ │ └── output.json │ │ ├── metadata │ │ │ ├── child-contract.meta.object.json │ │ │ ├── library.meta.json │ │ │ ├── simple.bzzr1.meta.json │ │ │ ├── simple.literal.meta.json │ │ │ ├── simple.meta.json │ │ │ ├── simple.meta.object.json │ │ │ ├── simpleWithImport.meta.json │ │ │ ├── with-immutables-and-libraries.meta.object.json │ │ │ └── withoutMetadataHash.meta.object.json │ │ ├── pass │ │ │ ├── library.js │ │ │ ├── simple.bzzr0.js │ │ │ ├── simple.bzzr1.js │ │ │ ├── simple.js │ │ │ ├── simple.literal.js │ │ │ ├── simpleWithImport.js │ │ │ ├── withImmutables.js │ │ │ └── withoutMetadataHash.js │ │ ├── truffle │ │ │ └── truffle-example.zip │ │ └── vyper │ │ │ ├── testcontract │ │ │ ├── artifact.json │ │ │ └── test.vy │ │ │ ├── testcontract2 │ │ │ ├── artifact.json │ │ │ └── test.vy │ │ │ └── testcontract3_fail │ │ │ ├── artifact.json │ │ │ └── test.vy │ ├── testcontracts │ │ ├── 1_Storage │ │ │ ├── 1_Storage.sol │ │ │ ├── address │ │ │ └── metadata.json │ │ ├── Create2 │ │ │ ├── Deployer.json │ │ │ ├── Deployer.sol │ │ │ ├── Deployer_metadata.json │ │ │ ├── Wallet.json │ │ │ ├── Wallet.sol │ │ │ └── Wallet_metadata.json │ │ ├── Database │ │ │ ├── CheckedContract.json │ │ │ └── Match.json │ │ ├── ERC20Standard │ │ │ ├── ERC20Standard.sol │ │ │ └── metadata.json │ │ ├── FactoryImmutable │ │ │ ├── Child.json │ │ │ ├── Child_metadata.json │ │ │ ├── Factory.json │ │ │ ├── FactoryTest.sol │ │ │ └── Factory_metadata.json │ │ ├── FactoryImmutableWithMsgSender │ │ │ ├── Child.json │ │ │ ├── Child_metadata.json │ │ │ ├── Factory.json │ │ │ ├── FactoryTest.sol │ │ │ └── Factory_metadata.json │ │ ├── FactoryImmutableWithoutConstrArg │ │ │ ├── Child3.json │ │ │ ├── Child3_metadata.json │ │ │ ├── Factory3.json │ │ │ ├── Factory3_metadata.json │ │ │ └── FactoryTest3.sol │ │ ├── LibrariesLinkedManually │ │ │ ├── 1_Storage.sol │ │ │ ├── LibrariesLinkedManually.json │ │ │ └── metadata.json │ │ ├── LibrariesPreSolidity050 │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── ClaimHolderLibrary.sol │ │ ├── LibrariesSolidity075 │ │ │ ├── Example.sol │ │ │ ├── LibrariesSolidity075.json │ │ │ └── metadata.json │ │ ├── Proxy │ │ │ ├── Proxy_flattened.json │ │ │ ├── Proxy_flattened.sol │ │ │ └── metadata.json │ │ ├── Storage │ │ │ ├── Storage-viaIR.json │ │ │ ├── Storage.json │ │ │ ├── Storage.sol │ │ │ ├── StorageJsonInput.json │ │ │ ├── StorageModified.sol │ │ │ ├── metadata-inliner.json │ │ │ ├── metadata.json │ │ │ ├── metadata.upMultipleDirs.json │ │ │ └── metadataModified.json │ │ ├── WithImmutables │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── WithImmutables.sol │ │ ├── ensure-metadata-storage │ │ │ ├── EIP1967Admin.sol │ │ │ ├── EIP1967Proxy.json │ │ │ ├── EIP1967Proxy.sol │ │ │ ├── correct-metadata.json │ │ │ └── wrong-metadata.json │ │ ├── path-sanitization-new-line │ │ │ ├── artifact.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ │ └── DFrostGeckoToken .sol │ │ └── path-sanitization │ │ │ ├── ERC20.json │ │ │ ├── metadata.json │ │ │ └── sources │ │ │ ├── Context.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC20Metadata.sol │ │ │ └── SDGC.sol │ ├── unit │ │ ├── VerificationService.spec.ts │ │ ├── apiv2 │ │ │ └── middlewares.spec.ts │ │ ├── storage │ │ │ └── EtherscanVerifyApiService.spec.ts │ │ ├── utils │ │ │ ├── contract-creation-util.spec.ts │ │ │ ├── parsing-util.spec.ts │ │ │ ├── proxy-bytecodes.json │ │ │ ├── proxy-contract-util.spec.ts │ │ │ └── signature-util.spec.ts │ │ └── verificationWorker.spec.ts │ └── verifier-alliance │ │ ├── constructor_arguments.json │ │ ├── full_match.json │ │ ├── full_match_double_auxdata.json │ │ ├── genesis.json │ │ ├── immutables.json │ │ ├── libraries_linked_by_compiler.json │ │ ├── libraries_manually_linked.json │ │ ├── metadata_hash_absent.json │ │ ├── partial_match.json │ │ ├── partial_match_2.json │ │ ├── partial_match_double_auxdata.json │ │ └── vyper │ │ ├── auxdata-0.3.4.json │ │ ├── auxdata-0.3.8.json │ │ ├── auxdata-0.4.0.json │ │ ├── auxdata-0.4.1.json │ │ └── constructor_args_immutables.json │ ├── tsconfig.json │ └── tsconfig.lint.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/continue_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/continue_config.yml -------------------------------------------------------------------------------- /.circleci/new_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/new_branch.yml -------------------------------------------------------------------------------- /.circleci/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/nightly.yml -------------------------------------------------------------------------------- /.circleci/scripts/build_and_publish_docker_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/scripts/build_and_publish_docker_images.sh -------------------------------------------------------------------------------- /.circleci/scripts/deploy_to_gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/scripts/deploy_to_gcp.sh -------------------------------------------------------------------------------- /.circleci/scripts/publish_multiarch_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/scripts/publish_multiarch_images.sh -------------------------------------------------------------------------------- /.circleci/scripts/publish_to_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/scripts/publish_to_npm.sh -------------------------------------------------------------------------------- /.circleci/scripts/test_new_chain_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/scripts/test_new_chain_support.sh -------------------------------------------------------------------------------- /.circleci/ssh.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/ssh.config -------------------------------------------------------------------------------- /.circleci/test-chains-regularly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.circleci/test-chains-regularly.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/self-hosted-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.github/ISSUE_TEMPLATE/self-hosted-instance.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.github/PULL_REQUEST_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.5.1 -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.nxignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/FUNDING.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/codecov.yml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/lerna.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/package.json -------------------------------------------------------------------------------- /packages/bytecode-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/.gitignore -------------------------------------------------------------------------------- /packages/bytecode-utils/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/.mocharc.json -------------------------------------------------------------------------------- /packages/bytecode-utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bytecode-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/LICENSE -------------------------------------------------------------------------------- /packages/bytecode-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/README.md -------------------------------------------------------------------------------- /packages/bytecode-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/package.json -------------------------------------------------------------------------------- /packages/bytecode-utils/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/bytecode'; 2 | -------------------------------------------------------------------------------- /packages/bytecode-utils/src/lib/bytecode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/src/lib/bytecode.ts -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecode.spec.ts -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/bzzr1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/bzzr1.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/experimental.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/experimental.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/ipfs.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/ipfs.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/vyper-cbor-no-array.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/vyper-cbor-no-array.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/vyper-integrity.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/vyper-integrity.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/vyper-no-auxdata-length.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/vyper-no-auxdata-length.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/vyper-no-integrity.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/vyper-no-integrity.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/without0x.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/without0x.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/withoutauxdata.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/withoutauxdata.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/test/bytecodes/wrong.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/test/bytecodes/wrong.hex -------------------------------------------------------------------------------- /packages/bytecode-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/bytecode-utils/tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/bytecode-utils/tsconfig.module.json -------------------------------------------------------------------------------- /packages/compilers-types/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ -------------------------------------------------------------------------------- /packages/compilers-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/CHANGELOG.md -------------------------------------------------------------------------------- /packages/compilers-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/LICENSE -------------------------------------------------------------------------------- /packages/compilers-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/package.json -------------------------------------------------------------------------------- /packages/compilers-types/src/CompilationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/src/CompilationTypes.ts -------------------------------------------------------------------------------- /packages/compilers-types/src/SolidityTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/src/SolidityTypes.ts -------------------------------------------------------------------------------- /packages/compilers-types/src/VyperTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/src/VyperTypes.ts -------------------------------------------------------------------------------- /packages/compilers-types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/src/index.ts -------------------------------------------------------------------------------- /packages/compilers-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/tsconfig.json -------------------------------------------------------------------------------- /packages/compilers-types/tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers-types/tsconfig.module.json -------------------------------------------------------------------------------- /packages/compilers/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | coverage/ -------------------------------------------------------------------------------- /packages/compilers/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/.mocharc.json -------------------------------------------------------------------------------- /packages/compilers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/CHANGELOG.md -------------------------------------------------------------------------------- /packages/compilers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/LICENSE -------------------------------------------------------------------------------- /packages/compilers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/README.md -------------------------------------------------------------------------------- /packages/compilers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/package.json -------------------------------------------------------------------------------- /packages/compilers/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/index.ts -------------------------------------------------------------------------------- /packages/compilers/src/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/lib/common.ts -------------------------------------------------------------------------------- /packages/compilers/src/lib/compilerWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/lib/compilerWorker.ts -------------------------------------------------------------------------------- /packages/compilers/src/lib/solidityCompiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/lib/solidityCompiler.ts -------------------------------------------------------------------------------- /packages/compilers/src/lib/vyperCompiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/lib/vyperCompiler.ts -------------------------------------------------------------------------------- /packages/compilers/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/src/logger.ts -------------------------------------------------------------------------------- /packages/compilers/test/solidityCompiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/test/solidityCompiler.spec.ts -------------------------------------------------------------------------------- /packages/compilers/test/utils/pre-v0.4.0-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/test/utils/pre-v0.4.0-input.json -------------------------------------------------------------------------------- /packages/compilers/test/vyperCompiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/test/vyperCompiler.spec.ts -------------------------------------------------------------------------------- /packages/compilers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/tsconfig.json -------------------------------------------------------------------------------- /packages/compilers/tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/compilers/tsconfig.module.json -------------------------------------------------------------------------------- /packages/lib-sourcify/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | coverage/ -------------------------------------------------------------------------------- /packages/lib-sourcify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/CHANGELOG.md -------------------------------------------------------------------------------- /packages/lib-sourcify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/LICENSE -------------------------------------------------------------------------------- /packages/lib-sourcify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/README.md -------------------------------------------------------------------------------- /packages/lib-sourcify/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/hardhat.config.js -------------------------------------------------------------------------------- /packages/lib-sourcify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/package.json -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/AbstractCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/AbstractCompilation.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/CompilationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/CompilationTypes.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/PreRunCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/PreRunCompilation.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/SolidityCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/SolidityCompilation.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/VyperCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/VyperCompilation.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Compilation/auxdataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Compilation/auxdataUtils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/SourcifyChain/SourcifyChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/SourcifyChain/SourcifyChain.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/SourcifyChain/SourcifyChainTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/SourcifyChain/SourcifyChainTypes.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/SourcifyLibError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/SourcifyLibError.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/SolidityMetadataContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/SolidityMetadataContract.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/ValidationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/ValidationTypes.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/fetchUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/fetchUtils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/hashFunctions/ipfsHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/hashFunctions/ipfsHash.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/hashFunctions/swarmHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/hashFunctions/swarmHash.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/processFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/processFiles.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/variationsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/variationsUtils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Validation/zipUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Validation/zipUtils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Verification/Transformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Verification/Transformations.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Verification/Verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Verification/Verification.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/Verification/VerificationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/Verification/VerificationTypes.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/index.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/logger.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/utils/etherscan/EtherscanTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/utils/etherscan/EtherscanTypes.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/utils/etherscan/etherscan-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/utils/etherscan/etherscan-util.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/src/utils/utils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Compilation/SolidityCompilation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Compilation/SolidityCompilation.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Compilation/VyperCompilation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Compilation/VyperCompilation.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/SourcifyChain.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/SourcifyChain.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Validation/SolidityMetadataContract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Validation/SolidityMetadataContract.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Validation/fetchUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Validation/fetchUtils.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Validation/processFiles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Validation/processFiles.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Validation/zipUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Validation/zipUtils.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/Verification/Verification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/Verification/Verification.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/hardhat-network-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/hardhat-network-helper.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/AbstractCreationBytecodeAttack/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/AbstractCreationBytecodeAttack/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/AbstractCreationBytecodeAttack/sources/FFF.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/AbstractCreationBytecodeAttack/sources/FFF.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CBORInTheMiddle/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CBORInTheMiddle/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CBORInTheMiddle/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CBORInTheMiddle/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CBORInTheMiddle/sources/DeploymentHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CBORInTheMiddle/sources/DeploymentHelper.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CBORInTheMiddleFactory/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CBORInTheMiddleFactory/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CBORInTheMiddleFactory/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CBORInTheMiddleFactory/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibraries/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibraries/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibraries/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibraries/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibraries/sources/Ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibraries/sources/Ballot.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/sources/Ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/CallProtectionForLibrariesViaIR/sources/Ballot.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Constructor/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Constructor/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Constructor/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Constructor/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Constructor/sources/Constructor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Constructor/sources/Constructor.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ConstructorModified/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ConstructorModified/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ConstructorModified/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ConstructorModified/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ConstructorModified/sources/ConstructorModified.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ConstructorModified/sources/ConstructorModified.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ContractWithVariatedSources/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ContractWithVariatedSources/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ContractWithVariatedSources/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ContractWithVariatedSources/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ContractWithVariatedSources/sources/TheGraphGreeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ContractWithVariatedSources/sources/TheGraphGreeter.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Create2/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Create2/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Create2/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Create2/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Create2/sources/Wallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Create2/sources/Wallet.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Address.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Address.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/DataTypes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/DataTypes.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Errors.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Errors.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/GenericLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/GenericLogic.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Helpers.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/Helpers.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IAToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IAToken.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IERC20.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ILendingPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ILendingPool.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IStableDebtToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/IStableDebtToken.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/LendingPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/LendingPool.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/MathUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/MathUtils.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/PercentageMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/PercentageMath.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ReserveLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ReserveLogic.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/SafeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/SafeERC20.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/SafeMath.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ValidationLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/ValidationLogic.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/WadRayMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ExtraFilesBytecodeMismatch/sources/WadRayMath.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Child/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Child/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Child/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Child/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Child/sources/FactoryTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Child/sources/FactoryTest.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Factory/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Factory/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Factory/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Factory/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutable/Factory/sources/FactoryTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutable/Factory/sources/FactoryTest.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Child/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Child/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Child/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Child/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Factory/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Factory/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Factory/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/FactoryImmutableWithoutConstrArg/Factory/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MetadataRewriting/contract/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MetadataRewriting/contract/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MetadataRewriting/contract/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MetadataRewriting/contract/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MetadataRewriting/contract/sources/EIP1967Admin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MetadataRewriting/contract/sources/EIP1967Admin.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MetadataRewriting/contract/sources/EIP1967Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MetadataRewriting/contract/sources/EIP1967Proxy.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MetadataRewriting/correct-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MetadataRewriting/correct-metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/PeterTraits.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/PeterTraits.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/PetersMain.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/PetersMain.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/TraitCategory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/TraitCategory.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Division.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Division.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Random.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Random.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/RandomCtx.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/RandomCtx.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/MultipleEqualAuxdatas/sources/src/common/Utils.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Nightly/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Nightly/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Nightly/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Nightly/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Nightly/sources/C.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Nightly/sources/C.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/NoAuxdata/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/NoAuxdata/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/NoAuxdata/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/NoAuxdata/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/NoAuxdata/sources/NoAuxdata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/NoAuxdata/sources/NoAuxdata.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/NoImmutableField/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/NoImmutableField/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/NoImmutableField/sources/NoImmutable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/NoImmutableField/sources/NoImmutable.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Storage/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Storage/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Storage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Storage/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Storage/sources/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Storage/sources/Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageInliner/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageInliner/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageInliner/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageInliner/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageInliner/sources/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageInliner/sources/Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageModified/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageModified/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageModified/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageModified/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageModified/sources/StorageModified.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageModified/sources/StorageModified.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageUnsortedMetadata/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageUnsortedMetadata/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageViaIR/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageViaIR/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageViaIR/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageViaIR/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/StorageViaIR/sources/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/StorageViaIR/sources/Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/UsingLibrary/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/UsingLibrary/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/UsingLibrary/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/UsingLibrary/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/UsingLibrary/sources/UsingLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/UsingLibrary/sources/UsingLibrary.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/sources/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/ViaIRUnoptimizedMismatch/sources/A -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/constructorArguments_0_3_9/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/constructorArguments_0_3_9/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/constructorArguments_0_3_9/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/constructorArguments_0_3_9/test.vy -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/testcontract/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/testcontract/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/testcontract/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/testcontract/test.vy -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/testcontract/wrongAuxdata/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/testcontract/wrongAuxdata/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/testcontract2/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/testcontract2/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/testcontract2/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/testcontract2/test.vy -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/withImmutables/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/withImmutables/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/Vyper/withImmutables/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/Vyper/withImmutables/test.vy -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithImmutables/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithImmutables/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithImmutables/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithImmutables/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithImmutables/sources/WithImmutables.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithImmutables/sources/WithImmutables.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithImmutablesCreationBytecodeAttack/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithImmutablesCreationBytecodeAttack/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithImmutablesCreationBytecodeAttack/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithImmutablesCreationBytecodeAttack/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithMultipleAuxdatas/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithMultipleAuxdatas/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithMultipleAuxdatas/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithMultipleAuxdatas/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/ERC20Token.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/ERC721Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/ERC721Token.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WithMultipleAuxdatas/sources/Factory.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WrongMetadata/SimplyLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WrongMetadata/SimplyLog.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WrongMetadata/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WrongMetadata/artifact.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WrongMetadata/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WrongMetadata/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/WrongMetadata/sources/SimplyLog.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/WrongMetadata/sources/SimplyLog.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/pre-0.4.11/Multidrop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/pre-0.4.11/Multidrop.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/sources/pre-0.4.11/Simple.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/sources/pre-0.4.11/Simple.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/utils.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/utils/etherscan-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/utils/etherscan-util.spec.ts -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/hardhat-output/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/hardhat-output/output.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/metadata-multiple-targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/metadata-multiple-targets.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/metadata-with-content-altered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/metadata-with-content-altered.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/metadata-with-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/metadata-with-content.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/Escrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/Escrow.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/Main.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/Main.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/Owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/Owned.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/Savings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/Savings.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple-altered/provableAPI_0.6.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple-altered/provableAPI_0.6.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/Escrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/Escrow.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/Main.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/Main.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/Owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/Owned.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/Savings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/Savings.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/multiple/provableAPI_0.6.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/multiple/provableAPI_0.6.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-add-trailing-n/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-add-trailing-n/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-add-trailing-n/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-add-trailing-n/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-add-trailing-rn/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-add-trailing-rn/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-add-trailing-rn/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-add-trailing-rn/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-altered-metadata/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-altered-metadata/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-altered-metadata/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-altered-metadata/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-altered/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-altered/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-altered/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-altered/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-keep-original/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-keep-original/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-keep-original/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-keep-original/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-n/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-n/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-n/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-n/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-rn/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-rn/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-rn/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-remove-trailing-rn/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-replace-with-n/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-replace-with-n/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-replace-with-n/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-replace-with-n/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-replace-with-rn/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-replace-with-rn/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single-replace-with-rn/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single-replace-with-rn/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single/1_Storage.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/single/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/single/metadata.json -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source.zip -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source/LICENSE -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example-missing-source2.zip -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example-with-macosx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example-with-macosx.zip -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example.zip -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/LICENSE -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/ConvertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/ConvertLib.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/MetaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/MetaCoin.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/contracts/Migrations.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/test/TestMetaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/test/TestMetaCoin.sol -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/test/metacoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/test/metacoin.js -------------------------------------------------------------------------------- /packages/lib-sourcify/test/validationFiles/files/truffle-example/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/test/validationFiles/files/truffle-example/truffle-config.js -------------------------------------------------------------------------------- /packages/lib-sourcify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/tsconfig.json -------------------------------------------------------------------------------- /packages/lib-sourcify/tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/packages/lib-sourcify/tsconfig.module.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/.env.example -------------------------------------------------------------------------------- /scripts/check-s3-backup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/check-s3-backup.mjs -------------------------------------------------------------------------------- /scripts/delete-sourcify-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/delete-sourcify-match.ts -------------------------------------------------------------------------------- /scripts/partial_matches_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/partial_matches_cleanup.sh -------------------------------------------------------------------------------- /scripts/release/git_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/release/git_utils.sh -------------------------------------------------------------------------------- /scripts/release/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/release/logging_utils.sh -------------------------------------------------------------------------------- /scripts/release/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/release/main.sh -------------------------------------------------------------------------------- /scripts/release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/release/release.sh -------------------------------------------------------------------------------- /scripts/release/release_data_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/release/release_data_utils.sh -------------------------------------------------------------------------------- /scripts/rename_repov2_sol_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/rename_repov2_sol_extension.sh -------------------------------------------------------------------------------- /scripts/updateChains.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/updateChains.mjs -------------------------------------------------------------------------------- /scripts/verify-massively.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/scripts/verify-massively.mjs -------------------------------------------------------------------------------- /services/4byte/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/.env.example -------------------------------------------------------------------------------- /services/4byte/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/.env.test -------------------------------------------------------------------------------- /services/4byte/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/.mocharc.json -------------------------------------------------------------------------------- /services/4byte/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /services/4byte/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/CHANGELOG.md -------------------------------------------------------------------------------- /services/4byte/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/Dockerfile -------------------------------------------------------------------------------- /services/4byte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/README.md -------------------------------------------------------------------------------- /services/4byte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/package.json -------------------------------------------------------------------------------- /services/4byte/src/FourByteServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/FourByteServer.ts -------------------------------------------------------------------------------- /services/4byte/src/SignatureDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/SignatureDatabase.ts -------------------------------------------------------------------------------- /services/4byte/src/api/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/api/handlers.ts -------------------------------------------------------------------------------- /services/4byte/src/api/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/api/validation.ts -------------------------------------------------------------------------------- /services/4byte/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/cli.ts -------------------------------------------------------------------------------- /services/4byte/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/logger.ts -------------------------------------------------------------------------------- /services/4byte/src/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/openapi.yaml -------------------------------------------------------------------------------- /services/4byte/src/utils/canonical-signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/utils/canonical-signatures.json -------------------------------------------------------------------------------- /services/4byte/src/utils/database-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/utils/database-util.ts -------------------------------------------------------------------------------- /services/4byte/src/utils/signature-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/src/utils/signature-util.ts -------------------------------------------------------------------------------- /services/4byte/test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/docker-compose.yml -------------------------------------------------------------------------------- /services/4byte/test/helpers/FourByteServerFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/helpers/FourByteServerFixture.ts -------------------------------------------------------------------------------- /services/4byte/test/integration/4bytes-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/integration/4bytes-api.spec.ts -------------------------------------------------------------------------------- /services/4byte/test/integration/bulkLongSignatures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/integration/bulkLongSignatures.csv -------------------------------------------------------------------------------- /services/4byte/test/integration/bulkLongSignatures.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/integration/bulkLongSignatures.spec.ts -------------------------------------------------------------------------------- /services/4byte/test/load-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/load-env.js -------------------------------------------------------------------------------- /services/4byte/test/unit/utils/signature-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/test/unit/utils/signature-util.spec.ts -------------------------------------------------------------------------------- /services/4byte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/4byte/tsconfig.json -------------------------------------------------------------------------------- /services/database/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/.env.template -------------------------------------------------------------------------------- /services/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/.gitignore -------------------------------------------------------------------------------- /services/database/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/CHANGELOG.md -------------------------------------------------------------------------------- /services/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/README.md -------------------------------------------------------------------------------- /services/database/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/docker-compose.yml -------------------------------------------------------------------------------- /services/database/dune/DuneDataClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/DuneDataClient.ts -------------------------------------------------------------------------------- /services/database/dune/DuneTableClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/DuneTableClient.ts -------------------------------------------------------------------------------- /services/database/dune/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/README.md -------------------------------------------------------------------------------- /services/database/dune/SourcifyDuneSyncClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/SourcifyDuneSyncClient.ts -------------------------------------------------------------------------------- /services/database/dune/fetchRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/fetchRows.ts -------------------------------------------------------------------------------- /services/database/dune/formatRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/formatRows.ts -------------------------------------------------------------------------------- /services/database/dune/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/dune/index.ts -------------------------------------------------------------------------------- /services/database/massive-replace-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/massive-replace-script/README.md -------------------------------------------------------------------------------- /services/database/massive-replace-script/config-constructor-arguments-transformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/massive-replace-script/config-constructor-arguments-transformation.js -------------------------------------------------------------------------------- /services/database/massive-replace-script/config-replace-creation-information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/massive-replace-script/config-replace-creation-information.js -------------------------------------------------------------------------------- /services/database/massive-replace-script/config-replace-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/massive-replace-script/config-replace-metadata.js -------------------------------------------------------------------------------- /services/database/massive-replace-script/massive-replace-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/massive-replace-script/massive-replace-script.ts -------------------------------------------------------------------------------- /services/database/migrations/20250722133557_sourcify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20250722133557_sourcify.sql -------------------------------------------------------------------------------- /services/database/migrations/20250828092603_add_signature_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20250828092603_add_signature_tables.sql -------------------------------------------------------------------------------- /services/database/migrations/20250922140427_optimize_signature_search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20250922140427_optimize_signature_search.sql -------------------------------------------------------------------------------- /services/database/migrations/20250922141802_signature_stats_materialized_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20250922141802_signature_stats_materialized_view.sql -------------------------------------------------------------------------------- /services/database/migrations/20251009141621_add_external_verification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20251009141621_add_external_verification.sql -------------------------------------------------------------------------------- /services/database/migrations/20251101120000_add_code_first_75_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/migrations/20251101120000_add_code_first_75_index.sql -------------------------------------------------------------------------------- /services/database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/package.json -------------------------------------------------------------------------------- /services/database/pg-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/pg-types.ts -------------------------------------------------------------------------------- /services/database/schema-updates/post-v0-to-v1-upgrade.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/schema-updates/post-v0-to-v1-upgrade.mjs -------------------------------------------------------------------------------- /services/database/scripts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/scripts.mjs -------------------------------------------------------------------------------- /services/database/scripts/ContractVerifier.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/scripts/ContractVerifier.mjs -------------------------------------------------------------------------------- /services/database/scripts/backfill-creation.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/scripts/backfill-creation.mjs -------------------------------------------------------------------------------- /services/database/scripts/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/scripts/logger.js -------------------------------------------------------------------------------- /services/database/sourcify-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/sourcify-database.sql -------------------------------------------------------------------------------- /services/database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/database/tsconfig.json -------------------------------------------------------------------------------- /services/monitor/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git/ 3 | dist/ 4 | .env -------------------------------------------------------------------------------- /services/monitor/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/.env.template -------------------------------------------------------------------------------- /services/monitor/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/.mocharc.json -------------------------------------------------------------------------------- /services/monitor/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /services/monitor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/CHANGELOG.md -------------------------------------------------------------------------------- /services/monitor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/Dockerfile -------------------------------------------------------------------------------- /services/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/README.md -------------------------------------------------------------------------------- /services/monitor/chains-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/chains-dev.json -------------------------------------------------------------------------------- /services/monitor/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/hardhat.config.js -------------------------------------------------------------------------------- /services/monitor/monitorChains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/monitorChains.json -------------------------------------------------------------------------------- /services/monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/package.json -------------------------------------------------------------------------------- /services/monitor/src/ChainMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/ChainMonitor.ts -------------------------------------------------------------------------------- /services/monitor/src/DecentralizedStorageFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/DecentralizedStorageFetcher.ts -------------------------------------------------------------------------------- /services/monitor/src/GatewayFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/GatewayFetcher.ts -------------------------------------------------------------------------------- /services/monitor/src/Monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/Monitor.ts -------------------------------------------------------------------------------- /services/monitor/src/PendingContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/PendingContract.ts -------------------------------------------------------------------------------- /services/monitor/src/defaultConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/defaultConfig.js -------------------------------------------------------------------------------- /services/monitor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/index.ts -------------------------------------------------------------------------------- /services/monitor/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/logger.ts -------------------------------------------------------------------------------- /services/monitor/src/loggerServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/loggerServer.ts -------------------------------------------------------------------------------- /services/monitor/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/types.ts -------------------------------------------------------------------------------- /services/monitor/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/src/util.ts -------------------------------------------------------------------------------- /services/monitor/test/Monitor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/Monitor.spec.ts -------------------------------------------------------------------------------- /services/monitor/test/hardhat-network-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/hardhat-network-helper.ts -------------------------------------------------------------------------------- /services/monitor/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/helpers.ts -------------------------------------------------------------------------------- /services/monitor/test/sources/Storage/1_Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/sources/Storage/1_Storage.json -------------------------------------------------------------------------------- /services/monitor/test/sources/Storage/1_Storage.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/sources/Storage/1_Storage.metadata.json -------------------------------------------------------------------------------- /services/monitor/test/sources/Storage/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/sources/Storage/1_Storage.sol -------------------------------------------------------------------------------- /services/monitor/test/testLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/test/testLogger.ts -------------------------------------------------------------------------------- /services/monitor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/monitor/tsconfig.json -------------------------------------------------------------------------------- /services/server/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/.env.dev -------------------------------------------------------------------------------- /services/server/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/.env.docker -------------------------------------------------------------------------------- /services/server/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/.env.test -------------------------------------------------------------------------------- /services/server/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/.mocharc.json -------------------------------------------------------------------------------- /services/server/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | chain-tests-report/ 3 | coverage/ 4 | node_modules/ -------------------------------------------------------------------------------- /services/server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/CHANGELOG.md -------------------------------------------------------------------------------- /services/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/Dockerfile -------------------------------------------------------------------------------- /services/server/Dockerfile.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/Dockerfile.debug -------------------------------------------------------------------------------- /services/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/README.md -------------------------------------------------------------------------------- /services/server/docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/docker-compose.local.yml -------------------------------------------------------------------------------- /services/server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/docker-compose.yml -------------------------------------------------------------------------------- /services/server/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/hardhat.config.js -------------------------------------------------------------------------------- /services/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/package.json -------------------------------------------------------------------------------- /services/server/src/apiv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/apiv2.yaml -------------------------------------------------------------------------------- /services/server/src/chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/chains.json -------------------------------------------------------------------------------- /services/server/src/common/async-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/async-context.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/BadGatewayError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/BadGatewayError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/BadRequestError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/BadRequestError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/ConflictError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/ConflictError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/ContractIsAlreadyBeingVerifiedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/ContractIsAlreadyBeingVerifiedError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/GenericErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/GenericErrorHandler.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/InternalServerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/InternalServerError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/NotFoundError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/NotFoundError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/PayloadTooLargeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/PayloadTooLargeError.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/TooManyRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/TooManyRequests.ts -------------------------------------------------------------------------------- /services/server/src/common/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/errors/index.ts -------------------------------------------------------------------------------- /services/server/src/common/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/interfaces.ts -------------------------------------------------------------------------------- /services/server/src/common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/common/logger.ts -------------------------------------------------------------------------------- /services/server/src/config/config-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/config-init.js -------------------------------------------------------------------------------- /services/server/src/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/default.js -------------------------------------------------------------------------------- /services/server/src/config/local-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/local-test.js -------------------------------------------------------------------------------- /services/server/src/config/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/master.js -------------------------------------------------------------------------------- /services/server/src/config/migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/migration.js -------------------------------------------------------------------------------- /services/server/src/config/staging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/config/staging.js -------------------------------------------------------------------------------- /services/server/src/extra-chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/extra-chains.json -------------------------------------------------------------------------------- /services/server/src/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/openapi.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/controllers.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/controllers.common.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/deprecated.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/deprecated.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/check-all-by-addresses.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/check-all-by-addresses.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/check-by-addresses.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/check-by-addresses.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/get-file-static.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/get-file-static.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/get-file-tree-all.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/get-file-tree-all.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/get-file-tree-full.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/get-file-tree-full.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/get-source-files-all.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/get-source-files-all.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/get-source-files-full.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/get-source-files-full.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/repository.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/repository.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/repository/repository.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/repository/repository.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/testartifacts/testartifacts.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/testartifacts/testartifacts.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/testartifacts/testartifacts.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/testartifacts/testartifacts.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/validation.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/etherscan/etherscan.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/etherscan/etherscan.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/private/private.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/private/private.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/private/stateless/customReplaceMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/private/stateless/customReplaceMethods.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/session-state/clear.session-state.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/session-state/clear.session-state.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/session-state/data.session-state.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/session-state/data.session-state.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/session-state/session-state.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/session-state/session-state.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/session-state/session-state.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/session-state/session-state.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/solc-json/solc-json.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/solc-json/solc-json.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verification.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verification.common.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/session/verify.session.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/session/verify.session.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/session/verify.session.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/session/verify.session.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/session/verify.session.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/session/verify.session.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/stateless/verify.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/stateless/verify.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/stateless/verify.stateless.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/stateless/verify.stateless.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/verify/verify.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/verify/verify.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.paths.yaml -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/vyper/stateless/vyper.stateless.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv1/verification/vyper/vyper.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv1/verification/vyper/vyper.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/errors.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/jobs/jobs.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/jobs/jobs.handler.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/jobs/jobs.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/jobs/jobs.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/lookup/lookup.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/lookup/lookup.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/lookup/lookup.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/lookup/lookup.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/middlewares.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/routes.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/verification/verification.handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/verification/verification.handlers.ts -------------------------------------------------------------------------------- /services/server/src/server/apiv2/verification/verification.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/apiv2/verification/verification.routes.ts -------------------------------------------------------------------------------- /services/server/src/server/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/cli.ts -------------------------------------------------------------------------------- /services/server/src/server/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/common.ts -------------------------------------------------------------------------------- /services/server/src/server/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/routes.ts -------------------------------------------------------------------------------- /services/server/src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/server.ts -------------------------------------------------------------------------------- /services/server/src/server/services/StorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/StorageService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/VerificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/VerificationService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/compiler/local/SolcLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/compiler/local/SolcLocal.ts -------------------------------------------------------------------------------- /services/server/src/server/services/compiler/local/VyperLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/compiler/local/VyperLocal.ts -------------------------------------------------------------------------------- /services/server/src/server/services/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/services.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/AbstractDatabaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/AbstractDatabaseService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/AllianceDatabaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/AllianceDatabaseService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/EtherscanVerifyApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/EtherscanVerifyApiService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/RepositoryV1Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/RepositoryV1Service.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/RepositoryV2Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/RepositoryV2Service.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/S3RepositoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/S3RepositoryService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/SourcifyDatabaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/SourcifyDatabaseService.ts -------------------------------------------------------------------------------- /services/server/src/server/services/storageServices/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/storageServices/identifiers.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/Database.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/SourcifyChainMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/SourcifyChainMock.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/contract-creation-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/contract-creation-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/database-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/database-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/etherscan-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/etherscan-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/parsing-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/parsing-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/proxy-contract-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/proxy-contract-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/signature-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/signature-util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/utils/util.ts -------------------------------------------------------------------------------- /services/server/src/server/services/workers/verificationWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/workers/verificationWorker.ts -------------------------------------------------------------------------------- /services/server/src/server/services/workers/workerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/workers/workerTypes.ts -------------------------------------------------------------------------------- /services/server/src/server/services/workers/workerWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/services/workers/workerWrapper.js -------------------------------------------------------------------------------- /services/server/src/server/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/session.ts -------------------------------------------------------------------------------- /services/server/src/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/server/types.ts -------------------------------------------------------------------------------- /services/server/src/sourcify-chain-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/sourcify-chain-repository.ts -------------------------------------------------------------------------------- /services/server/src/sourcify-chains-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/sourcify-chains-default.json -------------------------------------------------------------------------------- /services/server/src/sourcify-chains-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/sourcify-chains-example.json -------------------------------------------------------------------------------- /services/server/src/sourcify-chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/src/sourcify-chains.ts -------------------------------------------------------------------------------- /services/server/test/chains/chain-tests.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/chain-tests.spec.ts -------------------------------------------------------------------------------- /services/server/test/chains/deployContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/deployContracts.ts -------------------------------------------------------------------------------- /services/server/test/chains/etherscan-instances.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/etherscan-instances.spec.ts -------------------------------------------------------------------------------- /services/server/test/chains/sources/1/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/1/IERC20.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/1/airdrop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/1/airdrop.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/1/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/1/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/10/file.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/10/file.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/10/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/10/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/100/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/100/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/100/test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/100/test.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/106/ConvertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/106/ConvertLib.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/106/MetaCoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/106/MetaCoin.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/106/MetaCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/106/MetaCoin.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/1313161554/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/1313161554/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/1313161554/weth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/1313161554/weth.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/137/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/137/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/137/tokengenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/137/tokengenerator.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/25/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/25/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/25/storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/25/storage.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/252/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/252/Storage.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/252/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/252/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/288/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/288/Storage.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/288/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/288/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/40/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/40/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/40/nano.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/40/nano.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/42161/BalanceFetcher.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/42161/BalanceFetcher.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/42161/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/42161/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/4216137055/SigmaToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/4216137055/SigmaToken.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/4216137055/SigmaToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/4216137055/SigmaToken.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/42220/FMTLOL.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/42220/FMTLOL.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/42220/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/42220/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/43114/FMTLOL.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/43114/FMTLOL.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/43114/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/43114/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/56/Index.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/56/Index.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/56/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/56/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/57/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/57/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/57/sources/project/contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/57/sources/project/contracts/Token.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/5700/TestToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/5700/TestToken.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/5700/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/5700/Token.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/6119/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/6119/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/6119/sources/contracts/ERC4906.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/6119/sources/contracts/ERC4906.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/6119/sources/contracts/IUPTNAddressValidator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/6119/sources/contracts/IUPTNAddressValidator.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/6119/sources/contracts/UptnNFTsV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/6119/sources/contracts/UptnNFTsV1.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/8/GameItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/8/GameItem.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/8/GameItem.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/8/GameItem.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/82/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/82/Storage.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/82/Storage_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/82/Storage_meta.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/incrementer/Incrementer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/incrementer/Incrementer.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/incrementer/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/incrementer/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall-avalabs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall-avalabs/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall-avalabs/sources/Multicall3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall-avalabs/sources/Multicall3.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall-literal-contents/multicall3.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall-literal-contents/multicall3.metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall-src/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall-src/metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall-src/sources/Multicall3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall-src/sources/Multicall3.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall/Multicall3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall/Multicall3.sol -------------------------------------------------------------------------------- /services/server/test/chains/sources/multicall/multicall3.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/multicall/multicall3.metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/shared/1_Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/shared/1_Storage.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/shared/1_Storage.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/shared/1_Storage.metadata.json -------------------------------------------------------------------------------- /services/server/test/chains/sources/shared/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/chains/sources/shared/1_Storage.sol -------------------------------------------------------------------------------- /services/server/test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/docker-compose.yml -------------------------------------------------------------------------------- /services/server/test/global-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/global-mocks.ts -------------------------------------------------------------------------------- /services/server/test/helpers/LocalChainFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/LocalChainFixture.ts -------------------------------------------------------------------------------- /services/server/test/helpers/S3ClientMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/S3ClientMock.ts -------------------------------------------------------------------------------- /services/server/test/helpers/ServerFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/ServerFixture.ts -------------------------------------------------------------------------------- /services/server/test/helpers/assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/assertions.ts -------------------------------------------------------------------------------- /services/server/test/helpers/common-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/common-tests.ts -------------------------------------------------------------------------------- /services/server/test/helpers/etherscanInstanceContracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/etherscanInstanceContracts.json -------------------------------------------------------------------------------- /services/server/test/helpers/etherscanResponseMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/etherscanResponseMocks.ts -------------------------------------------------------------------------------- /services/server/test/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/helpers.ts -------------------------------------------------------------------------------- /services/server/test/helpers/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/helpers/mocks.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/repository-handlers/check-by-addresses.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/repository-handlers/check-by-addresses.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/repository-handlers/files.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/repository-handlers/files.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/verification-handlers/etherscan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/verification-handlers/etherscan.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/verification-handlers/private.stateless.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/verification-handlers/private.stateless.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/verification-handlers/verify.session.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/verification-handlers/verify.session.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/verification-handlers/verify.stateless.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/verification-handlers/verify.stateless.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv1/verification-handlers/vyper.stateless.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv1/verification-handlers/vyper.stateless.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/jobs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/jobs.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/lookup/all-chains.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/lookup/all-chains.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/lookup/contract-details.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/lookup/contract-details.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/lookup/contracts-by-chain.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/lookup/contracts-by-chain.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/v2.common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/v2.common.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/verification/compiler-versions/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/verification/compiler-versions/Storage.sol -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/verification/verify.etherscan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/verification/verify.etherscan.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/verification/verify.json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/verification/verify.json.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/verification/verify.metadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/verification/verify.metadata.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/apiv2/verification/verify.similarity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/apiv2/verification/verify.similarity.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/database.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/path-sanitization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/path-sanitization.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/status-handlers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/status-handlers.spec.ts -------------------------------------------------------------------------------- /services/server/test/integration/storageServices/SourcifyDatabaseService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/integration/storageServices/SourcifyDatabaseService.spec.ts -------------------------------------------------------------------------------- /services/server/test/load-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/load-env.js -------------------------------------------------------------------------------- /services/server/test/mocks/ipfs/QmNgYBpa6rUqCnfeYXC9eqURstnsTwPFrAPEM6GtvpFxVW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/mocks/ipfs/QmNgYBpa6rUqCnfeYXC9eqURstnsTwPFrAPEM6GtvpFxVW -------------------------------------------------------------------------------- /services/server/test/mocks/ipfs/QmaFRC9ZtT7y3t9XNWCbDuMTEwKkyaQJzYFzw3NbeohSn5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/mocks/ipfs/QmaFRC9ZtT7y3t9XNWCbDuMTEwKkyaQJzYFzw3NbeohSn5 -------------------------------------------------------------------------------- /services/server/test/sources/all/Import.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/all/Import.sol -------------------------------------------------------------------------------- /services/server/test/sources/all/Simple.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/all/Simple.sol -------------------------------------------------------------------------------- /services/server/test/sources/all/SimpleWithImport.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/all/SimpleWithImport.sol -------------------------------------------------------------------------------- /services/server/test/sources/all/simple.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/all/simple.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/all/simpleWithImport.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/all/simpleWithImport.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/artifacts/extraFilesBytecodeMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/artifacts/extraFilesBytecodeMismatch.json -------------------------------------------------------------------------------- /services/server/test/sources/compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/compiler.json -------------------------------------------------------------------------------- /services/server/test/sources/contracts/ChildContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/ChildContract.sol -------------------------------------------------------------------------------- /services/server/test/sources/contracts/Import.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/Import.sol -------------------------------------------------------------------------------- /services/server/test/sources/contracts/Library.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/Library.sol -------------------------------------------------------------------------------- /services/server/test/sources/contracts/ParentContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/ParentContract.sol -------------------------------------------------------------------------------- /services/server/test/sources/contracts/Simple.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/Simple.sol -------------------------------------------------------------------------------- /services/server/test/sources/contracts/SimpleWithImport.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/contracts/SimpleWithImport.sol -------------------------------------------------------------------------------- /services/server/test/sources/fail/invalidMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/fail/invalidMetadata.js -------------------------------------------------------------------------------- /services/server/test/sources/fail/unparseableMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/fail/unparseableMetadata.js -------------------------------------------------------------------------------- /services/server/test/sources/fail/wrongCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/fail/wrongCompiler.js -------------------------------------------------------------------------------- /services/server/test/sources/hardhat-output/extraFilesBytecodeMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/hardhat-output/extraFilesBytecodeMismatch.json -------------------------------------------------------------------------------- /services/server/test/sources/hardhat-output/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/hardhat-output/output.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/child-contract.meta.object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/child-contract.meta.object.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/library.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/library.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/simple.bzzr1.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/simple.bzzr1.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/simple.literal.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/simple.literal.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/simple.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/simple.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/simple.meta.object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/simple.meta.object.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/simpleWithImport.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/simpleWithImport.meta.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/with-immutables-and-libraries.meta.object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/with-immutables-and-libraries.meta.object.json -------------------------------------------------------------------------------- /services/server/test/sources/metadata/withoutMetadataHash.meta.object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/metadata/withoutMetadataHash.meta.object.json -------------------------------------------------------------------------------- /services/server/test/sources/pass/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/library.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/simple.bzzr0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/simple.bzzr0.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/simple.bzzr1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/simple.bzzr1.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/simple.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/simple.literal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/simple.literal.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/simpleWithImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/simpleWithImport.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/withImmutables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/withImmutables.js -------------------------------------------------------------------------------- /services/server/test/sources/pass/withoutMetadataHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/pass/withoutMetadataHash.js -------------------------------------------------------------------------------- /services/server/test/sources/truffle/truffle-example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/truffle/truffle-example.zip -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract/artifact.json -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract/test.vy -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract2/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract2/artifact.json -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract2/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract2/test.vy -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract3_fail/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract3_fail/artifact.json -------------------------------------------------------------------------------- /services/server/test/sources/vyper/testcontract3_fail/test.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/sources/vyper/testcontract3_fail/test.vy -------------------------------------------------------------------------------- /services/server/test/testcontracts/1_Storage/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/1_Storage/1_Storage.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/1_Storage/address: -------------------------------------------------------------------------------- 1 | xdai,0x656d0062eC89c940213E3F3170EA8b2add1c0143 2 | -------------------------------------------------------------------------------- /services/server/test/testcontracts/1_Storage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/1_Storage/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Deployer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Deployer.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Deployer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Deployer.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Deployer_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Deployer_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Wallet.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Wallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Wallet.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/Create2/Wallet_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Create2/Wallet_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Database/CheckedContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Database/CheckedContract.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Database/Match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Database/Match.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/ERC20Standard/ERC20Standard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ERC20Standard/ERC20Standard.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/ERC20Standard/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ERC20Standard/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutable/Child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutable/Child.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutable/Child_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutable/Child_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutable/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutable/Factory.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutable/FactoryTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutable/FactoryTest.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutable/Factory_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutable/Factory_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithMsgSender/Child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithMsgSender/Child.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithMsgSender/Child_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithMsgSender/Child_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithMsgSender/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithMsgSender/Factory.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithMsgSender/FactoryTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithMsgSender/FactoryTest.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithMsgSender/Factory_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithMsgSender/Factory_metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/Child3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/Child3.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/Factory3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/Factory3.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/FactoryTest3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/FactoryImmutableWithoutConstrArg/FactoryTest3.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesLinkedManually/1_Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesLinkedManually/1_Storage.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesLinkedManually/LibrariesLinkedManually.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesLinkedManually/LibrariesLinkedManually.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesLinkedManually/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesLinkedManually/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesPreSolidity050/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesPreSolidity050/artifact.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesPreSolidity050/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesPreSolidity050/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesSolidity075/Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesSolidity075/Example.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesSolidity075/LibrariesSolidity075.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesSolidity075/LibrariesSolidity075.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/LibrariesSolidity075/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/LibrariesSolidity075/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Proxy/Proxy_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Proxy/Proxy_flattened.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Proxy/Proxy_flattened.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Proxy/Proxy_flattened.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/Proxy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Proxy/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/Storage-viaIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/Storage-viaIR.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/Storage.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/Storage.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/StorageJsonInput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/StorageJsonInput.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/StorageModified.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/StorageModified.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/metadata-inliner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/metadata-inliner.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/metadata.upMultipleDirs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/metadata.upMultipleDirs.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/Storage/metadataModified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/Storage/metadataModified.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/WithImmutables/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/WithImmutables/artifact.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/WithImmutables/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/WithImmutables/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/WithImmutables/sources/WithImmutables.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/WithImmutables/sources/WithImmutables.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/ensure-metadata-storage/EIP1967Admin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ensure-metadata-storage/EIP1967Admin.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/ensure-metadata-storage/EIP1967Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ensure-metadata-storage/EIP1967Proxy.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/ensure-metadata-storage/EIP1967Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ensure-metadata-storage/EIP1967Proxy.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/ensure-metadata-storage/correct-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ensure-metadata-storage/correct-metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/ensure-metadata-storage/wrong-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/ensure-metadata-storage/wrong-metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization-new-line/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization-new-line/artifact.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization-new-line/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization-new-line/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/ERC20.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/metadata.json -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/sources/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/sources/Context.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/sources/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/sources/IERC20.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/sources/IERC20Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/sources/IERC20Metadata.sol -------------------------------------------------------------------------------- /services/server/test/testcontracts/path-sanitization/sources/SDGC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/testcontracts/path-sanitization/sources/SDGC.sol -------------------------------------------------------------------------------- /services/server/test/unit/VerificationService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/VerificationService.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/apiv2/middlewares.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/apiv2/middlewares.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/storage/EtherscanVerifyApiService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/storage/EtherscanVerifyApiService.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/utils/contract-creation-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/utils/contract-creation-util.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/utils/parsing-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/utils/parsing-util.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/utils/proxy-bytecodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/utils/proxy-bytecodes.json -------------------------------------------------------------------------------- /services/server/test/unit/utils/proxy-contract-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/utils/proxy-contract-util.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/utils/signature-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/utils/signature-util.spec.ts -------------------------------------------------------------------------------- /services/server/test/unit/verificationWorker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/unit/verificationWorker.spec.ts -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/constructor_arguments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/constructor_arguments.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/full_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/full_match.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/full_match_double_auxdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/full_match_double_auxdata.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/genesis.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/immutables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/immutables.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/libraries_linked_by_compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/libraries_linked_by_compiler.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/libraries_manually_linked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/libraries_manually_linked.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/metadata_hash_absent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/metadata_hash_absent.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/partial_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/partial_match.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/partial_match_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/partial_match_2.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/partial_match_double_auxdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/partial_match_double_auxdata.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/vyper/auxdata-0.3.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/vyper/auxdata-0.3.4.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/vyper/auxdata-0.3.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/vyper/auxdata-0.3.8.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/vyper/auxdata-0.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/vyper/auxdata-0.4.0.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/vyper/auxdata-0.4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/vyper/auxdata-0.4.1.json -------------------------------------------------------------------------------- /services/server/test/verifier-alliance/vyper/constructor_args_immutables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/test/verifier-alliance/vyper/constructor_args_immutables.json -------------------------------------------------------------------------------- /services/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/tsconfig.json -------------------------------------------------------------------------------- /services/server/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/services/server/tsconfig.lint.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argotorg/sourcify/HEAD/tslint.json --------------------------------------------------------------------------------