You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.6 KiB
50 lines
1.6 KiB
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail -x
|
|
|
|
VERSION="$(jq -r .version contracts/package.json)"
|
|
DIRNAME="$(dirname -- "${BASH_SOURCE[0]}")"
|
|
|
|
bash "$DIRNAME/patch-apply.sh"
|
|
sed -i'' -e "s/<package-version>/$VERSION/g" "contracts/package.json"
|
|
git add contracts/package.json
|
|
|
|
npm run clean
|
|
npm run compile
|
|
|
|
build_info=($(jq -r '.input.sources | keys | if any(test("^contracts/mocks/.*\\bunreachable\\b")) then empty else input_filename end' artifacts/build-info/*))
|
|
build_info_num=${#build_info[@]}
|
|
|
|
if [ $build_info_num -ne 1 ]; then
|
|
echo "found $build_info_num relevant build info files but expected just 1"
|
|
exit 1
|
|
fi
|
|
|
|
# -D: delete original and excluded files
|
|
# -b: use this build info file
|
|
# -i: use included Initializable
|
|
# -x: exclude proxy-related contracts with a few exceptions
|
|
# -p: emit public initializer
|
|
# -n: use namespaces
|
|
# -N: exclude from namespaces transformation
|
|
# -q: partial transpilation using @openzeppelin/contracts as peer project
|
|
npx @openzeppelin/upgrade-safe-transpiler -D \
|
|
-b "$build_info" \
|
|
-i contracts/proxy/utils/Initializable.sol \
|
|
-x 'contracts-exposed/**/*' \
|
|
-x 'contracts/proxy/**/*' \
|
|
-x '!contracts/proxy/Clones.sol' \
|
|
-x '!contracts/proxy/ERC1967/ERC1967Storage.sol' \
|
|
-x '!contracts/proxy/ERC1967/ERC1967Utils.sol' \
|
|
-x '!contracts/proxy/utils/UUPSUpgradeable.sol' \
|
|
-x '!contracts/proxy/beacon/IBeacon.sol' \
|
|
-p 'contracts/access/manager/AccessManager.sol' \
|
|
-p 'contracts/finance/VestingWallet.sol' \
|
|
-p 'contracts/governance/TimelockController.sol' \
|
|
-p 'contracts/metatx/ERC2771Forwarder.sol' \
|
|
-n \
|
|
-N 'contracts/mocks/**/*' \
|
|
-q '@openzeppelin/'
|
|
|
|
# delete compilation artifacts of vanilla code
|
|
npm run clean
|
|
|