File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11name : Check Security & Build & Migrate to Testnet
22
33env :
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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments