Skip to content

Commit

Permalink
fix slither
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Sep 12, 2024
1 parent cd04b17 commit ef00a92
Show file tree
Hide file tree
Showing 33 changed files with 12 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

rm -rf abi && mkdir -p abi/examples
rm -rf typescript-types && mkdir typescript-types

for dir in ./examples/*/; do
subdir=$(echo $dir | cut -d'/' -f2)

cd $dir && yarn && npx hardhat compile --force && cp -r artifacts/contracts/* ../../abi/examples/ && cd ../../;
done

find ./abi/ -name '*.dbg.json' -exec rm {} \;

0 comments on commit ef00a92

Please sign in to comment.