Files
scroll/contracts/admin/abis.sh
Max Wolff 487f4f2af4 wip cli
2023-06-27 21:42:24 -07:00

11 lines
417 B
Bash
Executable File

#!/bin/bash
set -ue
# This script is used to generate the typechain artifacts for the contracts
mkdir -p abis types
cat ../artifacts/src/Safe.sol/Safe.json | jq .abi >> abis/safe.json
cat ../artifacts/src/TimelockController.sol/TimelockController.json | jq .abi >> abis/timelock.json
cat ../artifacts/src/Forwarder.sol/Forwarder.json | jq .abi >> abis/forwarder.json
npx typechain --target=ethers-v6 "abis/*.json"