Skip to content

Commit

Permalink
refactor: revert owner to deployer
Browse files Browse the repository at this point in the history
  • Loading branch information
nlecoufl committed Nov 4, 2024
1 parent 9eb6140 commit 289b1e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/deployDisputer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ async function main() {
const network = await ethers.provider.getNetwork();
const chainId = network.chainId;

console.log(`Deploying Disputer on ${network.name} (chainId: ${chainId})...`);
console.log(`Deploying Disputer on ${network.name.toString()} (chainId: ${chainId})...`);

try {
const distributor = registry(chainId as ChainId)?.Merkl?.Distributor;
const owner = registry(chainId as ChainId)?.AngleLabs || '0xA9DdD91249DFdd450E81E1c56Ab60E1A62651701';
const owner = '0xA9DdD91249DFdd450E81E1c56Ab60E1A62651701';
const whitelist = [
'0xeA05F9001FbDeA6d4280879f283Ff9D0b282060e',
'0x0dd2Ea40A3561C309C03B96108e78d06E8A1a99B',
Expand Down

0 comments on commit 289b1e4

Please sign in to comment.