generated from letmejustputthishere/icp-evm-coprocessor-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.sh
executable file
·78 lines (75 loc) · 2.67 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
76
77
78
#!/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
# because our local NFT contract deployment is deterministic, we can hardcode the
# the `get_logs_address` here. in our case we are listening for mint events,
# that is transfer events with the `from` field being the zero address.
# you can read more about event signatures [here](https://docs.alchemy.com/docs/deep-dive-into-eth_getlogs#what-are-event-signatures)
cargo build --release --target wasm32-unknown-unknown --package chainfusion_backend
dfx canister create --with-cycles 10_000_000_000_000 chainfusion_backend
dfx canister install --wasm target/wasm32-unknown-unknown/release/chainfusion_backend.wasm chainfusion_backend --argument '(
record {
ecdsa_key_id = record {
name = "dfx_test_key";
curve = variant { secp256k1 };
};
get_logs_topics = vec {
opt vec {
vec {
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef";
};
vec {
"0x0000000000000000000000000000000000000000000000000000000000000000";
};
};
opt vec {
vec {
"0xf8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7";
};
};
};
last_scraped_block_number = 0: nat;
rpc_services = variant {
Custom = record {
chainId = 31_337 : nat64;
services = vec { 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
# safe the chain_fusion canisters evm address
export EVM_ADDRESS=$(dfx canister call chainfusion_backend get_evm_address | awk -F'"' '{print $2}')
# deploy the contract and mint one nft
forge script script/NFT.s.sol:MyScript --fork-url http://localhost:8545 --broadcast --sig "run(address)" $EVM_ADDRESS