forked from Agoric/dapp-orchestration-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
24 lines (22 loc) · 914 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
EXEC_OSMO = kubectl exec -i hermes-agoric-osmosis-0 -c relayer --
e2e: build build
yarn workspace dapp-agoric-orca-contract test; yarn workspace dapp-agoric-orca-contract build; yarn workspace dapp-agoric-orca-contract e2e
build:
yarn workspace dapp-agoric-orca-contract test; yarn workspace dapp-agoric-orca-contract build;
redeploy:
yarn workspace dapp-agoric-orca-contract deployc
test-orca:
yarn workspace dapp-agoric-orca-contract test
fund:
yarn workspace dapp-agoric-orca-contract fund
add-address:
yarn workspace dapp-agoric-orca-contract add:address
lint:
yarn workspace dapp-agoric-orca-contract lint
hermes-update:
$(EXEC_OSMO) hermes update client --host-chain agoriclocal --client 07-tendermint-1 || { \
echo "'07-tendermint-1' failed, trying '07-tendermint-0'..."; \
$(EXEC_OSMO) hermes update client --host-chain agoriclocal --client 07-tendermint-0; \
}
sleep 60
make hermes-update