forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
61 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,77 @@ | ||
#!/bin/sh | ||
|
||
# Deploys create2 proxy according to https://github.com/primev/deterministic-deployment-proxy | ||
set -ex | ||
|
||
set -e | ||
# Deploys create2 proxy according to https://github.com/primev/deterministic-deployment-proxy | ||
|
||
# Use the first command line argument, if provided. Otherwise, use the environment variable. | ||
JSON_RPC="${1:-$JSON_RPC_URL}" | ||
PROXY_ADDRESS="0x4e59b44847b379578588920ca78fbf26c0b4956c" | ||
SIGNER_ADDRESS="0x3fab184622dc19b6109349b94811493bf2a45362" | ||
# The following transaction string contains fixed from address corresponding to the signer address: 0x3fab184622dc19b6109349b94811493bf2a45362 | ||
TRANSACTION="0xf8a58085174876e800830186a08080b853604580600e600039806000f350fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578182fd5b8082525050506014600cf31ba02222222222222222222222222222222222222222222222222222222222222222a02222222222222222222222222222222222222222222222222222222222222222" | ||
|
||
if [ -z "${JSON_RPC}" ]; then | ||
echo "Usage: $0 <JSON_RPC_URL> or set the JSON_RPC_URL environment variable." | ||
help() { | ||
echo "Usage: $0 <RPC_URL>" | ||
echo " RPC_URL: URL of the JSON RPC endpoint" | ||
exit 1 | ||
fi | ||
} | ||
|
||
if ! [ -x "$(command -v curl)" ]; then | ||
echo "Curl must be installed to deploy the create2 proxy" >&2 | ||
exit 1 | ||
RPC_URL="${1:-$RPC_URL}" | ||
if [ -z "${RPC_URL}" ]; then | ||
help | ||
fi | ||
|
||
# Check if contract already deployed | ||
DATA='{"jsonrpc":"2.0","method":"eth_getCode","params":["0x4e59b44847b379578588920ca78fbf26c0b4956c", "latest"],"id":1}' | ||
RESPONSE=$(curl -s -X POST --data "${DATA}" -H "Content-Type: application/json" "${JSON_RPC}") | ||
CODE=$(echo "${RESPONSE}" | jq -r '.result') | ||
RESPONSE=$( | ||
curl \ | ||
--silent \ | ||
--request POST \ | ||
--header "Content-Type: application/json" \ | ||
--data '{ | ||
"jsonrpc": "2.0", | ||
"method": "eth_getCode", | ||
"params": ["'"${PROXY_ADDRESS}"'", "latest"], | ||
"id": 1 | ||
}' \ | ||
"${RPC_URL}") | ||
if [ -z "${RESPONSE}" ] || [ "${RESPONSE}" = "null" ]; then | ||
echo "Error: No response from JSON RPC at ${JSON_RPC}" | ||
echo "Error: No response from JSON RPC at ${RPC_URL}" | ||
exit 1 | ||
fi | ||
if [ "${CODE}" != "0x" ]; then | ||
echo "Contract already deployed at 0x4e59b44847b379578588920ca78fbf26c0b4956c" | ||
if [ "$(echo "${RESPONSE}" | jq -r '.result')" != "0x" ]; then | ||
echo "Contract already deployed at ${PROXY_ADDRESS}" | ||
exit 0 | ||
else | ||
echo "No contract deployed at 0x4e59b44847b379578588920ca78fbf26c0b4956c. Deploying..." | ||
fi | ||
|
||
# Note deployement signer account needs at least 10000000000000000 wei allocated on genesis to send tx | ||
|
||
# Set presigned transaction | ||
TRANSACTION="0xf8a58085174876e800830186a08080b853604580600e600039806000f350fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578182fd5b8082525050506014600cf31ba02222222222222222222222222222222222222222222222222222222222222222a02222222222222222222222222222222222222222222222222222222222222222" | ||
|
||
# deploy contract | ||
curl -s "${JSON_RPC}" -X 'POST' -H 'Content-Type: application/json' --data "{\"jsonrpc\":\"2.0\", \"id\":1, \"method\": \"eth_sendRawTransaction\", \"params\": [\"$TRANSACTION\"]}" | ||
|
||
echo "No contract deployed at ${PROXY_ADDRESS}, deploying..." | ||
curl \ | ||
--silent "${RPC_URL}" \ | ||
--request 'POST' \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ | ||
"jsonrpc": "2.0", | ||
"id": 1, | ||
"method": "eth_sendRawTransaction", | ||
"params": ["'"${TRANSACTION}"'"] | ||
}' | ||
sleep 5 | ||
|
||
# For prod we'll have to set gas params s.t. no ether is leftover here. For now we warn | ||
RESPONSE=$(curl -s -X POST --data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0x3fab184622dc19b6109349b94811493bf2a45362", "latest"],"id":1}' -H "Content-Type: application/json" "${JSON_RPC}") | ||
if [ "$(echo "${RESPONSE}" | jq -r '.result')" != "0x0" ]; then | ||
echo "WARNING: Deployment signer (0x3fab184622dc19b6109349b94811493bf2a45362) has leftover balance of $(echo "${RESPONSE}" | jq -r '.result') wei" | ||
RESPONSE=$( | ||
curl \ | ||
--silent \ | ||
--request POST \ | ||
--header "Content-Type: application/json" \ | ||
--data '{ | ||
"jsonrpc": "2.0", | ||
"method": "eth_getBalance", | ||
"params": ["'"${SIGNER_ADDRESS}"'", "latest"], | ||
"id": 1 | ||
}' \ | ||
"${RPC_URL}") | ||
if [ -z "${RESPONSE}" ] || [ "${RESPONSE}" = "null" ]; then | ||
echo "Error: No response from JSON RPC at ${RPC_URL}" | ||
exit 1 | ||
fi | ||
RESULT="$(echo "${RESPONSE}" | jq -r '.result')" | ||
if [ "${RESULT}" != "0x0" ]; then | ||
echo "WARNING: Deployment signer (${SIGNER_ADDRESS}) has leftover balance of ${RESULT} wei." | ||
fi |