Skip to content

Commit 696aca0

Browse files
committed
add LST token to ve deploy
1 parent 0818732 commit 696aca0

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ See [SPECIFICATION.md](./SPECIFICATION.md) for more detail.
99
#### Testnet
1010

1111
```
12-
BalanceLogicLibrary deployed to 0x2C1c801d7aB856c2f9c65B750f812f71165aAcE0
13-
DelegationLogicLibrary deployed to 0x596EF8Ad2fe06c8240B7fEa729710e7D71Dd2c69
14-
Forwarder deployed to 0xF5f9B25bb25afC31BB86A45e5E8Df2D06642dbbD
15-
VotingEscrow deployed to 0x875627Ecc2DFB9792a3612012F204f06c1F35D52
16-
Trig deployed to 0x2892e5eF938034841CE4993b72479a3DaD56541f
17-
PerlinNoise deployed to 0xDCe6EDeb0e13274408f7B049A5f5D98B2e88806C
18-
VeArtProxy deployed to 0xEa52Fc937a95DACA2c405c2e1d7051B9D17dbeE3
12+
LST Token: 0x180dC617701A507239659215D19FA142eD3B91A7
13+
BalanceLogicLibrary deployed to 0xAb51f1344a99cA04131B735Fc399bF0840841e72
14+
DelegationLogicLibrary deployed to 0x269eF19C20e2Cd8952ab43082CDCE1b26Ba3719B
15+
Forwarder deployed to 0x050D779Bf93A7b95D27e676EcdAFe255C45e982b
16+
VotingEscrow deployed to 0xB85e1FEb8d1BB1eb9BD257B6cD1ff98Dc94C70dD
17+
Trig deployed to 0xd66fe3deD9d8af22Ea507B18cF8C263F505bbacd
18+
PerlinNoise deployed to 0x86a24be33e709915a630088E64945936F832B477
19+
VeArtProxy deployed to 0x74086C4Db9A153b23A8E17DB42d92d9932Ec7eF7
1920
```

script/deploy_ve.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ async function main() {
1515
await forwarder.waitForDeployment();
1616
console.log(`Forwarder deployed to ${forwarder.target}`);
1717

18-
const escrow = await ethers.deployContract('VotingEscrow', [forwarder, []], {
18+
const tokens = [];
19+
if (process.env.LST_ADDRESS) {
20+
tokens.push(process.env.LST_ADDRESS);
21+
}
22+
23+
const escrow = await ethers.deployContract('VotingEscrow', [forwarder, tokens], {
1924
libraries: {
2025
BalanceLogicLibrary: balanceLogicLibrary.target,
2126
DelegationLogicLibrary: delegationLogicLibrary.target,

0 commit comments

Comments
 (0)