Initial commit

This commit is contained in:
lash
2023-07-25 09:49:50 +01:00
commit a4fc3c1dda
2 changed files with 113 additions and 0 deletions

12
solidity/Makefile Normal file
View File

@@ -0,0 +1,12 @@
SOLC = /usr/bin/solc
all:
$(SOLC) --bin SwapPool.sol --evm-version byzantium | awk 'NR>3' > SwapPool.bin
$(SOLC) --abi SwapPool.sol --evm-version byzantium | awk 'NR>3' > SwapPool.json
$(SOLC) --metadata SwapPool.sol --evm-version byzantium | awk 'NR>3' > SwapPool.metadata.json
truncate -s -1 SwapPool.bin
install: all
cp -v *.json ../python/erc20_swap_pool/data/
cp -v *.bin ../python/erc20_swap_pool/data/