-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathverify-script.sh
33 lines (25 loc) · 1.09 KB
/
verify-script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!bin/bash
echo starting verify contact network $1.
truffle run verify ControllerV1 --network $1
truffle run verify CronosDexAggregatorV1 --network $1
truffle run verify LTimePool --network $1
truffle run verify LPoolDepositor --network $1
truffle run verify LPoolDepositorDelegator --network $1
truffle run verify OpenLevV1 --network $1
truffle run verify OpenLevV1Lib --network $1
truffle run verify QueryHelper --network $1
truffle run verify Timelock --network $1
truffle run verify XOLE --network $1
truffle run verify ControllerDelegator --network $1
truffle run verify DexAggregatorDelegator --network $1
truffle run verify OpenLevDelegator --network $1
truffle run verify XOLEDelegator --network $1
truffle run verify Airdrop --network $1
truffle run verify OLEToken --network $1
truffle run verify GovernorAlpha --network $1
truffle run verify Reserve --network $1
truffle run verify TreasuryDelegator --network $1
truffle run verify Treasury --network $1
truffle run verify OLETokenLock --network $1
truffle run verify FarmingPool --network $1
echo finished verify contact network $1.