Skip to content

Commit

Permalink
Update address
Browse files Browse the repository at this point in the history
  • Loading branch information
KMKoushik committed Feb 10, 2023
1 parent a2f6d36 commit 5ab2c06
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/constants/address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export const BULL_STRATEGY: Address = {
export const BULL_NETTING: Address = {
1: '',
3: '',
5: '0x4a26C9EEf4d3487AACf40C5815b88EC88a5E885A',
5: '0x9b6e3F5aeed72eC7C42097BC324DF43baac08645',
421611: '',
31337: '',
}
Expand Down
27 changes: 27 additions & 0 deletions packages/zen-bull-netting/script/GoerliDeployScript.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import { DeployScript } from "./DeployScript.s.sol";

contract GoerliDeployScript is DeployScript {
address public constant ownerAddress = 0x56a847c21a4FA937c11258d94C8B1650cdbA21F7;
address public constant zenBullAddress = 0x2a5AD7582a9e42944Ee32671436593D16999c70a;
address public constant eulerSimpleLensAddress = 0x62626a0f051B547b3182e55D1Eba667138790D8D;
address public constant flashZenAddress = 0x3876aF971560FD4c4ba3FB18632AcC0570B745b1;
address public constant uniFactoryAddress = 0x55C0ceF3cc64F511C34b18c720bCf38feC6C6fFa;

uint256 public constant initialMinEthAmount = 1e18;
uint256 public constant initialMinZenBullAmount = 1;

constructor()
DeployScript(
ownerAddress,
zenBullAddress,
eulerSimpleLensAddress,
flashZenAddress,
uniFactoryAddress,
initialMinEthAmount,
initialMinZenBullAmount
)
{ }
}

0 comments on commit 5ab2c06

Please sign in to comment.