forked from 0xEigenLabs/eigen-secret
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.sh
executable file
·47 lines (30 loc) · 1.93 KB
/
test.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
#!/bin/bash
set -ex
NETWORK=${1-dev}
npm run deploy:$NETWORK
export TOKEN=$(cat .contract.json | jq -r .testToken)
npx hardhat create-account --alias Alice --index 0 --network $NETWORK
npx hardhat setup-rollup --network $NETWORK
npx hardhat register-token --token $TOKEN --network $NETWORK
npx hardhat deposit --alias Alice --index 0 --value 10 --asset-id 2 --network $NETWORK
npx hardhat deposit --alias Alice --index 0 --value 10 --asset-id 2 --network $NETWORK
npx hardhat get-transactions --alias Alice --index 0
npx hardhat get-balance --alias Alice --index 0 --asset-id 2 --network $NETWORK
npx hardhat deposit --alias Alice --index 0 --value 10 --asset-id 2 --network $NETWORK
npx hardhat get-balance --alias Alice --index 0 --asset-id 2 --network $NETWORK
npx hardhat create-account --alias Bob --index 1 --network $NETWORK
npx hardhat send-l1 --alias Alice --asset-id 2 --receiver 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 --value 100 --network $NETWORK
npx hardhat deposit --alias Bob --index 1 --value 10 --asset-id 2 --network $NETWORK
npx hardhat deposit --alias Bob --index 1 --value 10 --asset-id 2 --network $NETWORK
npx hardhat get-balance --alias Bob --index 1 --asset-id 2 --network $NETWORK
npx hardhat get-balance --alias Alice --index 0 --asset-id 2 --network $NETWORK
npx hardhat get-balance --alias Bob --index 1 --asset-id 2 --network $NETWORK
npx hardhat migrate-account --alias Alice --index 0
npx hardhat get-balance --alias Alice --index 0 --asset-id 2 --network $NETWORK
npx hardhat get-balance --alias Bob --index 1 --asset-id 2 --network $NETWORK
npx hardhat deposit --alias Alice --index 0 --value 11 --asset-id 2 --network $NETWORK
npx hardhat update-account --alias Alice --index 0
npx hardhat deposit --alias Alice --index 0 --value 12 --asset-id 2 --network $NETWORK
# TODO: test send
npx hardhat withdraw --alias Alice --index 0 --value 12 --asset-id 2 --network $NETWORK
npx hardhat get-transactions --alias Alice --index 0