UNPKG

@eth-optimism/contracts

Version:
34 lines 1.65 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getContractFactory = exports.getContractInterface = exports.getDeployedContractDefinition = exports.getContractDefinition = void 0; const ethers_1 = require("ethers"); const getContractDefinition = (name) => { const { getContractArtifact } = require('./contract-artifacts'); const artifact = getContractArtifact(name); if (artifact === undefined) { throw new Error(`Unable to find artifact for contract: ${name}`); } return artifact; }; exports.getContractDefinition = getContractDefinition; const getDeployedContractDefinition = (name, network) => { const { getDeployedContractArtifact, } = require('./contract-deployed-artifacts'); const artifact = getDeployedContractArtifact(name, network); if (artifact === undefined) { throw new Error(`Unable to find artifact for contract on network ${network}: ${name}`); } return artifact; }; exports.getDeployedContractDefinition = getDeployedContractDefinition; const getContractInterface = (name) => { const definition = (0, exports.getContractDefinition)(name); return new ethers_1.ethers.utils.Interface(definition.abi); }; exports.getContractInterface = getContractInterface; const getContractFactory = (name, signer) => { const definition = (0, exports.getContractDefinition)(name); const contractInterface = (0, exports.getContractInterface)(name); return new ethers_1.ethers.ContractFactory(contractInterface, definition.bytecode, signer); }; exports.getContractFactory = getContractFactory; //# sourceMappingURL=contract-defs.js.map