mirror of
https://github.com/status-im/status-go.git
synced 2026-08-31 00:51:12 +00:00
tests-functional/ -> test/functional/ tests-unit-network/ -> test/unit-network/ No Go code changes beyond the two package paths. Every reference follows: Makefile targets, the pytest-lint and reliability workflows, the three Jenkinsfiles, the root Dockerfile, pyrightconfig.json, .gitignore, the benchmark and functional-test scripts, and the docs. All paths inside the moved directories are self-contained (docker compose uses `context: .`, the Python helpers resolve from __file__), so the extra level of nesting does not reach outside. refs #7067
18 lines
630 B
Bash
18 lines
630 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export ANVIL_URL="http://anvil:8545"
|
|
export DEPLOYER_ADDRESS="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
|
|
export DEPLOYER_PRIVATE_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
|
|
export CONTRACTS_PATH="/app/contracts"
|
|
|
|
echo "Starting Foundry"
|
|
|
|
echo "Deploying Multicall3"
|
|
forge create $CONTRACTS_PATH/Multicall3.sol:Multicall3 --rpc-url $ANVIL_URL --private-key $DEPLOYER_PRIVATE_KEY --broadcast | tee $CONTRACTS_PATH/Multicall3.sol.log
|
|
|
|
echo "Deploying SNT and Communities contracts"
|
|
/app/deploy_contracts.sh
|
|
|
|
tail -F /dev/null # Keep container running indefinitely
|