mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-06 03:53:47 +00:00
14 lines
572 B
Bash
14 lines
572 B
Bash
#!/bin/sh
|
|
set -exu
|
|
|
|
# Update src tokens.ts file with hypNativeAddress value from deploy config
|
|
ARTIFACT_PATH="/deploy-artifacts/warp-ui-token-config.json"
|
|
SRC_TOKENS_PATH="/hyperlane-ui/src/consts/tokens.ts"
|
|
HYP_NATIVE_ADDR=$(jq -r '.hypNativeAddress' $ARTIFACT_PATH)
|
|
sed -i "/hypNativeAddress/c\ hypNativeAddress: \"$HYP_NATIVE_ADDR\"," $SRC_TOKENS_PATH
|
|
|
|
# Update src chains.ts file with L2 node url depending on dev vs prod
|
|
SRC_CHAINS_PATH="/hyperlane-ui/src/consts/chains.ts"
|
|
sed -i "s|http: 'http://[^']*'|http: '$L2_NODE_URL'|g" "$SRC_CHAINS_PATH"
|
|
|
|
exec yarn dev
|