Skip to content

Commit

Permalink
removed values from deployment and verification script
Browse files Browse the repository at this point in the history
cryptonoyaiba committed May 20, 2024
1 parent 7a05d1e commit db5bc0c
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/010_deploy_verifying_paymaster.ts
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ const deployVerifyingPaymaster: DeployFunction = async function (
console.log('starting deployment of verifying paymaster...');

const entrypoint = '0x0000000071727De22E5E9d8BAf0edAc6f37da032';
const verifyingSigner = '0x09FD4F6088f2025427AB1e89257A44747081Ed59';
const verifyingSigner = '';
const ret = await deploy('VerifyingPaymaster', {
from,
args: [entrypoint, verifyingSigner],
4 changes: 2 additions & 2 deletions deploy/011_verify_verifying_signer.ts
Original file line number Diff line number Diff line change
@@ -4,9 +4,9 @@ import { DeployFunction } from 'hardhat-deploy/types';
const verifyVerifyingPaymaster: DeployFunction = async function (
hre: HardhatRuntimeEnvironment
) {
const PAYMASTER_ADDRESS = '0x810FA4C915015b703db0878CF2B9344bEB254a40'; // Add deployed paymaster address to verify
const PAYMASTER_ADDRESS = ''; // Add deployed paymaster address to verify
const ENTRY_POINT_ADDRESS = '0x0000000071727De22E5E9d8BAf0edAc6f37da032';
const VERIFYING_SIGNER_ADDRESS = '0x09FD4F6088f2025427AB1e89257A44747081Ed59';
const VERIFYING_SIGNER_ADDRESS = '';

console.log('starting verification...');

0 comments on commit db5bc0c

Please sign in to comment.