@matterlabs/hardhat-zksync-verify
Version:
Hardhat plugin to verify smart contracts for the ZKsync network
10 lines • 900 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PROVIDED_CHAIN_IS_NOT_SUPPORTED_FOR_VERIFICATION = exports.TRYING_VERIFICATION_WITH_FULL_COMPILER_INPUT = void 0;
const TRYING_VERIFICATION_WITH_FULL_COMPILER_INPUT = (contractName) => `We tried verifying your contract ${contractName} without including any unrelated one, but it failed.
Trying again with the full solc input used to compile and deploy it.
This means that unrelated contracts may be displayed on the explorer.`;
exports.TRYING_VERIFICATION_WITH_FULL_COMPILER_INPUT = TRYING_VERIFICATION_WITH_FULL_COMPILER_INPUT;
const PROVIDED_CHAIN_IS_NOT_SUPPORTED_FOR_VERIFICATION = (chainId) => `The provided chain with id ${chainId} is not supported by default!`;
exports.PROVIDED_CHAIN_IS_NOT_SUPPORTED_FOR_VERIFICATION = PROVIDED_CHAIN_IS_NOT_SUPPORTED_FOR_VERIFICATION;
//# sourceMappingURL=constants.js.map