diff --git a/scripts/deployEspressoTEEVerifierMock.ts b/scripts/deployEspressoTEEVerifierMock.ts new file mode 100644 index 00000000..94eb42b5 --- /dev/null +++ b/scripts/deployEspressoTEEVerifierMock.ts @@ -0,0 +1,25 @@ +import '@nomiclabs/hardhat-ethers' +import { ethers } from 'hardhat' +import { deployContract } from './deploymentUtils' + +async function main() { + const [deployer] = await ethers.getSigners() + + const esperssoTEEVerifier = await deployContract( + 'EspressoTEEVerifierMock', + deployer, + [], + true + ) + console.log( + 'EspressoTEEVerifierMock deployed at address:', + esperssoTEEVerifier.address + ) +} + +main() + .then(() => process.exit(0)) + .catch((error: Error) => { + console.error(error) + process.exit(1) + })