erc20-vend

Create ERC20 tokens the can be minted by existing ERC20 token balance
Log | Files | Refs

Makefile (380B)


      1 SOLC = /usr/bin/solc
      2 
      3 all:
      4 	$(SOLC) --bin Vend.sol --evm-version byzantium | awk 'NR>7' > Vend.bin
      5 	$(SOLC) --abi Vend.sol --evm-version byzantium | awk 'NR>7' > Vend.json
      6 	$(SOLC) --metadata Vend.sol --evm-version byzantium | awk 'NR>7' > Vend.metadata.json
      7 	truncate -s -1 Vend.bin
      8 
      9 install: all
     10 	cp -v *.json ../python/erc20_vend/data/
     11 	cp -v *.bin ../python/erc20_vend/data/
     12