Skip to content

Commit a5cd768

Browse files
committed
fix secrets
1 parent 5736250 commit a5cd768

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/migrate-to-testnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Check Security & Build & Migrate to Testnet
22

33
env:
4-
WALLET_SECRET: "0xc38c3d5f5ef43046e40fedc84d81d2a665ac1311d80a91a759bf5213469de14d" # ${{ secrets.DEV_WALLET_SECRET }} # Set Deployer wallet secret
5-
RPC: https://nd-934-738-609.p2pify.com/57e6666822a12f2ffb05a27ae563bac2
6-
NETWORK_ID: 421611 # Testnet Network ID
7-
CONFIRMATIONS: 1 # Confirmation blocks required
4+
WALLET_SECRET: ${{ secrets.DEV_WALLET_SECRET }} # Set Deployer wallet secret
5+
RPC: ${{ secrets.RPC_ENDPOINT }}
6+
NETWORK_ID: ${{ secrets.NETWORK_ID }} # Testnet Network ID
7+
CONFIRMATIONS: ${{ secrets.CONFIRMATIONS }} # Confirmation blocks required
88

99
DEPLOY_BRANCH_POSTFIX: deployed # Configure the destination branch postfix (code on "main" branch will be built and pushed into "main-POSTFIX" branch)
1010

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM mythril/myth
2+
3+
WORKDIR /home/analyze
4+
5+
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
6+
apt-get install -y nodejs
7+
8+
CMD ["/usr/bin/bash"]
9+

0 commit comments

Comments
 (0)