accounts-index

Accounts index evm contract tooling with permissioned writes
Log | Files | Refs

Makefile (459B)


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