forked from malteish/ReTransICP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
executable file
·75 lines (72 loc) · 2.76 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
# Find process IDs listening on port 8545 (anvil)
anvil=$(lsof -t -i:8545)
# Check if any PIDs were found
if [ -z "$anvil" ]; then
echo "Anvil not running."
else
# Kill the processes
kill $anvil && echo "Terminated running Anvil process."
sleep 3
fi
# start anvil with slots in an epoch send to 1 for faster finalised blocks
anvil --slots-in-an-epoch 1 &
# kill caddyserver
caddy stop
# start caddyserver
caddy start
dfx stop
# Find process IDs listening on port 4943 (dfx)
dfx=$(lsof -t -i:4943)
# Check if any PIDs were found
if [ -z "$dfx" ]; then
echo "dfx not running."
else
# Kill the processes
kill $dfx && echo "Terminating running dfx instance."
sleep 3
fi
dfx start --clean --background
dfx ledger fabricate-cycles --icp 10000 --canister $(dfx identity get-wallet)
dfx deploy evm_rpc
cargo build --release --target wasm32-unknown-unknown --package chain_fusion_backend
dfx canister create --with-cycles 10_000_000_000_000 chain_fusion_backend
# because the local smart contract deployment is deterministic, we can hardcode the
# the `get_logs_address` here. in our case we are listening for NextExecutionTimestamp events,
# you can read more about event signatures [here](https://docs.alchemy.com/docs/deep-dive-into-eth_getlogs#what-are-event-signatures)
# (we can use cast sig-event "NextExecutionTimestamp(uint, uint indexed)" to get the topic)
dfx canister install --wasm target/wasm32-unknown-unknown/release/chain_fusion_backend.wasm chain_fusion_backend --argument '(
record {
ecdsa_key_id = record {
name = "dfx_test_key";
curve = variant { secp256k1 };
};
get_logs_topics = opt vec {
vec {
"0xd270de418848f07676c092e30c67a99070a18f01b8f573731322eadeea0c1ab8";
};
};
last_scraped_block_number = 0: nat;
rpc_services = variant {
Custom = record {
chainId = 31_337 : nat64;
services = vec { record { url = "https://localhost:8546"; headers = null } };
}
};
rpc_service = variant {
Custom = record {
url = "https://localhost:8546";
headers = null;
}
};
get_logs_address = vec { "0x5FbDB2315678afecb367f032d93F642f64180aa3" };
block_tag = variant { Latest = null };
},
)'
# sleep for 3 seconds to allow the evm address to be generated
sleep 3
# save the chain_fusion canisters evm address
export EVM_ADDRESS=$(dfx canister call chain_fusion_backend get_evm_address | awk -F'"' '{print $2}')
export PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
# deploy the contract passing the chain_fusion canisters evm address to receive the fees and create a couple of new jobs
forge script script/DeployEnvironment.s.sol:MyScript --fork-url http://localhost:8545 --broadcast --sig "run(address)" $EVM_ADDRESS