Skip to content

Commit a6b7a19

Browse files
committed
deployed new locking corwdsale contract
Signed-off-by: Stefan Adolf <[email protected]>
1 parent 0a8cb52 commit a6b7a19

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ Deprecated after migrating to Defender 2 (was 0x3D30452c48F2448764d5819a9A2b684A
4646
| Terms Permissioner | 0xC05D649368d8A5e2E98CAa205d47795de5fCB599 | <a href="https://sepolia.etherscan.io/address/0xC05D649368d8A5e2E98CAa205d47795de5fCB599#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0xC05D649368d8A5e2E98CAa205d47795de5fCB599&theme=dark&chainId=1" alt="View contract" /></a> |
4747
| Tokenizer | 0xca63411FF5187431028d003eD74B57531408d2F9 | <a href="https://sepolia.etherscan.io/address/0xca63411FF5187431028d003eD74B57531408d2F9#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0xca63411FF5187431028d003eD74B57531408d2F9&theme=dark&chainId=1" alt="View contract" /></a> |
4848
| Crowdsale | 0x8cA737E2cdaE1Ceb332bEf7ba9eA711a3a2f8037 | <a href="https://sepolia.etherscan.io/address/0x8cA737E2cdaE1Ceb332bEf7ba9eA711a3a2f8037#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0x8cA737E2cdaE1Ceb332bEf7ba9eA711a3a2f8037&theme=dark&chainId=1" alt="View contract" /></a> |
49-
| Locking Crowdsale | 0xaf7358576C9F7cD84696D28702fC5ADe33cce0e9 | <a href="https://sepolia.etherscan.io/address/0xaf7358576C9F7cD84696D28702fC5ADe33cce0e9#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0xaf7358576C9F7cD84696D28702fC5ADe33cce0e9&theme=dark&chainId=1" alt="View contract" /></a> |
49+
| Locking Crowdsale | 0x67D8ed102E2168A46FA342e39A5f7D16c103Bd0d | <a href="https://sepolia.etherscan.io/address/0x67D8ed102E2168A46FA342e39A5f7D16c103Bd0d#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0x67D8ed102E2168A46FA342e39A5f7D16c103Bd0d&theme=dark&chainId=1" alt="View contract" /></a> |
5050
| Staked Crowdsale | 0xd1cE2EA7d3b0C9cAB025A4aD762FC00315141ad7 | <a href="https://sepolia.etherscan.io/address/0xd1cE2EA7d3b0C9cAB025A4aD762FC00315141ad7#code" target="_blank"><img width="200" height="45" src="https://badges.thirdweb.com/contract?address=0xd1cE2EA7d3b0C9cAB025A4aD762FC00315141ad7&theme=dark&chainId=11155111" alt="View contract" /></a> |
5151

52+
5253
timelocked token implementation=0xF8F79c1E02387b0Fc9DE0945cD9A2c06F127D851
53-
new staked crowdsale (not used yet HUBS-224) 0x7eeb7113f90893fb95c6666e3930235850f2bc6A)
54+
~~new staked crowdsale (not used yet HUBS-224) 0x7eeb7113f90893fb95c6666e3930235850f2bc6A)~~
5455

5556
#### Subgraphs
5657

script/prod/RolloutV25Sale.sol

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy
77
import { IPNFT } from "../../src/IPNFT.sol";
88
import { IPermissioner, TermsAcceptedPermissioner } from "../../src/Permissioner.sol";
99
import { StakedLockingCrowdSale } from "../../src/crowdsale/StakedLockingCrowdSale.sol";
10-
import { LockingCrowdSale } from "../../src/crowdsale/LockingCrowdSale.sol";
10+
import { LockingCrowdSale, ITrustedLockingContracts } from "../../src/crowdsale/LockingCrowdSale.sol";
1111
import { TimelockedToken } from "../../src/TimelockedToken.sol";
1212

1313
contract RolloutV25Sale is Script {
@@ -32,11 +32,13 @@ contract RolloutV25LockingSale is Script {
3232
function run() public {
3333
//mainnet 0xCfA0F84660fB33bFd07C369E5491Ab02C449f71B;
3434
address moleculeDevMultisig = 0x9d5a6ae551f1117946FF6e0e86ef9A1B20C90Cb0;
35-
address stakedLockingCrowdsale = 0xd1cE2EA7d3b0C9cAB025A4aD762FC00315141ad7;
35+
36+
ITrustedLockingContracts stakedLockingCrowdsale = ITrustedLockingContracts(0xd1cE2EA7d3b0C9cAB025A4aD762FC00315141ad7);
3637
TimelockedToken timelockedTokenImplementation = TimelockedToken(0xF8F79c1E02387b0Fc9DE0945cD9A2c06F127D851);
3738

3839
vm.startBroadcast();
3940
LockingCrowdSale lockingCrowdsale = new LockingCrowdSale(timelockedTokenImplementation);
41+
lockingCrowdsale.trustLockingContractSource(stakedLockingCrowdsale);
4042
lockingCrowdsale.transferOwnership(moleculeDevMultisig);
4143
vm.stopBroadcast();
4244

0 commit comments

Comments
 (0)