Skip to content

Commit 62b0a90

Browse files
authored
Merge pull request #123 from keep-network/moving-keep-core-solidity-v1
Update scripts after moving keep-core random beacon to `solidity-v1` There was a change in `keep-core`, in which random beacon and token dashboard -related code was moved from `solidity/` to `solidity-v1/` folder, as a result of decision to change the code structure before introduction of random beacon v2. We need to update `local-setup` scripts which reference the moved code.
2 parents adb52a7 + 615c374 commit 62b0a90

6 files changed

Lines changed: 9 additions & 9 deletions

install-coverage-pools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ printf "${LOG_START}Starting coverage-pools deployment...${LOG_END}"
1313

1414
printf "${LOG_START}Linking dependencies...${LOG_END}"
1515

16-
cd "$WORKDIR/keep-core/solidity"
16+
cd "$WORKDIR/keep-core/solidity-v1"
1717
yarn link
1818

1919
cd "$WORKDIR/tbtc/solidity"

install-e2e-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cd e2e
77
npm install
88

99
echo "Linking..."
10-
cd ../keep-core/solidity
10+
cd ../keep-core/solidity-v1
1111
npm link
1212
cd ../../keep-ecdsa/solidity
1313
npm link

install-keep-dashboard.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ printf "${LOG_START}Starting Keep Dashboard deployment...${LOG_END}"
1313

1414
printf "${LOG_START}Preparing keep-core artifacts...${LOG_END}"
1515

16-
cd $WORKDIR/keep-core/solidity
16+
cd $WORKDIR/keep-core/solidity-v1
1717
ln -sf build/contracts artifacts
1818

1919
printf "${LOG_START}Preparing keep-ecdsa artifacts...${LOG_END}"
@@ -28,13 +28,13 @@ ln -sf build/contracts artifacts
2828

2929
printf "${LOG_START}Install Keep Dashboard dependencies...${LOG_END}"
3030

31-
cd $WORKDIR/keep-core/solidity/dashboard
31+
cd $WORKDIR/keep-core/solidity-v1/dashboard
3232

3333
npm install
3434

3535
printf "${LOG_START}Updating Keep Dashboard dependencies...${LOG_END}"
3636

37-
cd $WORKDIR/keep-core/solidity
37+
cd $WORKDIR/keep-core/solidity-v1
3838
npm link
3939

4040
cd $WORKDIR/keep-ecdsa/solidity
@@ -45,7 +45,7 @@ npm link
4545

4646
printf "${LOG_START}Updating Keep Dashboard configuration...${LOG_END}"
4747

48-
cd $WORKDIR/keep-core/solidity/dashboard
48+
cd $WORKDIR/keep-core/solidity-v1/dashboard
4949
npm link @keep-network/keep-core @keep-network/keep-ecdsa @keep-network/tbtc
5050

5151
printf "${DONE_START}Keep Dashboard initialized successfully!${DONE_END}"

install-keep-ecdsa.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ mv $TMP_FILE truffle.js
5555

5656
printf "${LOG_START}Linking dependencies...${LOG_END}"
5757

58-
cd "$WORKDIR/keep-core/solidity"
58+
cd "$WORKDIR/keep-core/solidity-v1"
5959
npm link
6060

6161
printf "${LOG_START}Running install script...${LOG_END}"

install-tbtc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ printf "${LOG_START}Running install script...${LOG_END}"
4343

4444
printf "${LOG_START}Linking dependencies...${LOG_END}"
4545

46-
cd "$WORKDIR/keep-core/solidity"
46+
cd "$WORKDIR/keep-core/solidity-v1"
4747
npm link
4848

4949
cd "$WORKDIR/keep-ecdsa/solidity"

run-keep-dashboard.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ WORKDIR=$PWD
1111

1212
printf "${LOG_START}Starting Keep Dashboard...${LOG_END}"
1313

14-
cd $WORKDIR/keep-core/solidity/dashboard
14+
cd $WORKDIR/keep-core/solidity-v1/dashboard
1515

1616
npm run start

0 commit comments

Comments
 (0)