-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bc6f6c
commit 015a59a
Showing
4 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"leafGaugeFactory: ": "0xeAD23f606643E387a073D0EE8718602291ffaAeB", | ||
"leafPoolFactory: ": "0x04625B046C69577EfC40e6c0Bb83CDBAfab5a55F", | ||
"leafPoolImplementation: ": "0x321f7Dfb9B2eA9131B8C17691CF6e01E5c149cA8", | ||
"mixedQuoter: ": "0x2f7150B288ef1cc553207bD9fbd40D4e0e093B24", | ||
"nft: ": "0x991d5546C4B442B4c5fdc4c8B8b8d131DEB24702", | ||
"nftDescriptor: ": "0xf13bd1AFdf4f8b394928228F8FD122DC225f9140", | ||
"quoter: ": "0x3FA596fAC2D6f7d16E01984897Ac04200Cb9cA05", | ||
"slipstreamSugar": "0x222ed297aF0560030136AE652d39fa40E1B72818", | ||
"swapFeeModule: ": "0x6812eefC19deB79D5191b52f4B763260d9F3C238", | ||
"swapRouter: ": "0x63951637d667f23D5251DEdc0f9123D22d8595be", | ||
"unstakedFeeModule: ": "0xFF02E0330bD42976754FB37CBFfd9549473E1E60" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
pragma solidity 0.7.6; | ||
pragma abicoder v2; | ||
|
||
import "script/01_DeployLeafBaseFixture.s.sol"; | ||
|
||
contract DeployLeafCL is DeployLeafBaseFixture { | ||
function setUp() public override { | ||
_params = DeployLeafBaseFixture.DeploymentParameters({ | ||
weth: 0x4200000000000000000000000000000000000006, | ||
leafVoter: 0x97cDBCe21B6fd0585d29E539B1B99dAd328a1123, | ||
factoryV2: 0x31832f2a97Fd20664D76Cc421207669b55CE4BC0, | ||
xVelo: 0x7f9AdFbd38b669F03d1d11000Bc76b9AaEA28A81, | ||
messageBridge: 0xF278761576f45472bdD721EACA19317cE159c011, | ||
team: 0x6fF6F4485375C4D194c3C6F3FC15D53409697FcA, | ||
poolFactoryOwner: 0x6fF6F4485375C4D194c3C6F3FC15D53409697FcA, | ||
feeManager: 0x6fF6F4485375C4D194c3C6F3FC15D53409697FcA, | ||
nftName: "Slipstream Position NFT v1.2", | ||
nftSymbol: "VELO-CL-POS", | ||
outputFilename: "metal.json" | ||
}); | ||
} | ||
} |